Class: Chef::Provider::Reboot

Inherits:
Chef::Provider show all
Defined in:
lib/chef/provider/reboot.rb

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary

Attributes inherited from Chef::Provider

#action, #cookbook_name, #current_resource, #new_resource, #recipe_name, #run_context

Instance Method Summary collapse

Methods inherited from Chef::Provider

#action_nothing, #cleanup_after_converge, #converge_by, #define_resource_requirements, #events, #initialize, #node, node_map, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, supports?, #whyrun_mode?

Methods included from Mixin::DescendantsTracker

#descendants, descendants, direct_descendants, #direct_descendants, find_descendants_by_name, #find_descendants_by_name, #inherited, store_inherited

Methods included from Mixin::ShellOut

#run_command_compatible_options, #shell_out, #shell_out!, #shell_out_with_systems_locale, #shell_out_with_systems_locale!

Constructor Details

This class inherits a constructor from Chef::Provider

Instance Method Details

#action_cancelObject



61
62
63
64
65
66
# File 'lib/chef/provider/reboot.rb', line 61

def action_cancel
  converge_by("cancel any existing end-of-run reboot request") do
    Chef::Log.warn "Reboot canceled: '#{@new_resource.name}'"
    node.run_context.cancel_reboot
  end
end

#action_reboot_nowObject



53
54
55
56
57
58
59
# File 'lib/chef/provider/reboot.rb', line 53

def action_reboot_now
  converge_by("rebooting the system immediately") do
    Chef::Log.warn "Rebooting system immediately, requested by '#{@new_resource.name}'"
    request_reboot
    throw :end_client_run_early
  end
end

#action_request_rebootObject



46
47
48
49
50
51
# File 'lib/chef/provider/reboot.rb', line 46

def action_request_reboot
  converge_by("request a system reboot to occur if the run succeeds") do
    Chef::Log.warn "Reboot requested:'#{@new_resource.name}'"
    request_reboot
  end
end

#load_current_resourceObject



30
31
32
33
34
35
# File 'lib/chef/provider/reboot.rb', line 30

def load_current_resource
  @current_resource ||= Chef::Resource::Reboot.new(@new_resource.name)
  @current_resource.reason(@new_resource.reason)
  @current_resource.delay_mins(@new_resource.delay_mins)
  @current_resource
end

#request_rebootObject



37
38
39
40
41
42
43
44
# File 'lib/chef/provider/reboot.rb', line 37

def request_reboot
  node.run_context.request_reboot(
    :delay_mins => @new_resource.delay_mins,
    :reason => @new_resource.reason,
    :timestamp => Time.now,
    :requested_by => @new_resource.name
    )
end

#whyrun_supported?Boolean

Returns:

  • (Boolean)


26
27
28
# File 'lib/chef/provider/reboot.rb', line 26

def whyrun_supported?
  true
end