summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Doherty <cdoherty@getchef.com>2014-09-05 11:28:28 -0700
committerChris Doherty <cdoherty@getchef.com>2014-09-10 16:34:26 -0700
commit77ef1533442c4aa15a135812f5642371512b78f0 (patch)
tree3e8a0e284037a388b90bf400831734be784a14fb
parent7ddbbe164d2621b0d5dbe9cfc98b686b0c320847 (diff)
downloadchef-77ef1533442c4aa15a135812f5642371512b78f0.tar.gz
Modulify.
-rw-r--r--lib/chef/rebooter.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/rebooter.rb b/lib/chef/rebooter.rb
index 68fcb43201..f88276694c 100644
--- a/lib/chef/rebooter.rb
+++ b/lib/chef/rebooter.rb
@@ -22,8 +22,8 @@ require 'chef/platform'
# this has whatever's needed to reboot the server, on whichever platform.
class Chef
- class Rebooter
- include Chef::Mixin::ShellOut
+ module Rebooter
+ extend Chef::Mixin::ShellOut
class << self
attr_reader :node, :reboot_info