Class: Chef::Provider::Service::Init

Inherits:
Simple show all
Includes:
Mixin::ShellOut
Defined in:
lib/chef/provider/service/init.rb

Direct Known Subclasses

Arch, Debian, Freebsd, Gentoo, Insserv, Invokercd, Redhat

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary

Attributes inherited from Chef::Provider

#action, #current_resource, #new_resource, #run_context

Instance Method Summary collapse

Methods included from Mixin::ShellOut

#run_command_compatible_options, #shell_out, #shell_out!

Methods inherited from Simple

#load_current_resource, #shared_resource_requirements, #whyrun_supported?

Methods inherited from Chef::Provider::Service

#action_disable, #action_enable, #action_reload, #action_restart, #action_start, #action_stop, #disable_service, #enable_service, #load_new_resource_state, #shared_resource_requirements, #whyrun_supported?

Methods included from Mixin::Command

#chdir_or_tmpdir, #handle_command_failures, #output_of_command, #run_command, #run_command_with_systems_locale

Methods included from Mixin::Command::Windows

#popen4

Methods included from Mixin::Command::Unix

#popen4

Methods inherited from Chef::Provider

#action_nothing, #cleanup_after_converge, #cookbook_name, #events, #load_current_resource, #node, #process_resource_requirements, #requirements, #resource_collection, #run_action, #set_updated_status, #whyrun_mode?, #whyrun_supported?

Methods included from DSL::Recipe

#method_missing

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename

Constructor Details

#initialize(new_resource, run_context) ⇒ Init

Returns a new instance of Init.



31
32
33
34
# File 'lib/chef/provider/service/init.rb', line 31

def initialize(new_resource, run_context)
  super
  @init_command = "/etc/init.d/#{@new_resource.service_name}"
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Chef::DSL::Recipe

Instance Method Details

#define_resource_requirementsObject



36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/chef/provider/service/init.rb', line 36

def define_resource_requirements
  # do not call super here, inherit only shared_requirements
  shared_resource_requirements
  requirements.assert(:start, :stop, :restart, :reload) do |a|
    a.assertion do
      custom_command_for_action?(action) || ::File.exist?(default_init_command)
    end
    a.failure_message(Chef::Exceptions::Service, "#{default_init_command} does not exist!")
    a.whyrun("Init script '#{default_init_command}' doesn't exist, assuming a prior action would have created it.") do
      # blindly assume that the service exists but is stopped in why run mode:
      @status_load_success = false
    end
  end
end

#reload_serviceObject



79
80
81
82
83
84
85
# File 'lib/chef/provider/service/init.rb', line 79

def reload_service
  if @new_resource.reload_command
    super
  elsif @new_resource.supports[:reload]
    shell_out!("#{default_init_command} reload")
  end
end

#restart_serviceObject



67
68
69
70
71
72
73
74
75
76
77
# File 'lib/chef/provider/service/init.rb', line 67

def restart_service
  if @new_resource.restart_command
    super
  elsif @new_resource.supports[:restart]
    shell_out!("#{default_init_command} restart")
  else
    stop_service
    sleep 1
    start_service
  end
end

#start_serviceObject



51
52
53
54
55
56
57
# File 'lib/chef/provider/service/init.rb', line 51

def start_service
  if @new_resource.start_command
    super
  else
    shell_out!("#{default_init_command} start")
  end
end

#stop_serviceObject



59
60
61
62
63
64
65
# File 'lib/chef/provider/service/init.rb', line 59

def stop_service
  if @new_resource.stop_command
    super
  else
    shell_out!("#{default_init_command} stop")
  end
end