Class: Chef::Provider::Service::Insserv
- Inherits:
-
Init
- Object
- Chef::Provider
- Chef::Provider::Service
- Simple
- Init
- Chef::Provider::Service::Insserv
- Defined in:
- lib/chef/provider/service/insserv.rb
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 inherited from Init
#define_resource_requirements, #initialize, #reload_service, #restart_service, #start_service, #stop_service
Methods included from Mixin::ShellOut
#run_command_compatible_options, #shell_out, #shell_out!
Methods inherited from Simple
#define_resource_requirements, #reload_service, #restart_service, #shared_resource_requirements, #start_service, #stop_service, #whyrun_supported?
Methods inherited from Chef::Provider::Service
#action_disable, #action_enable, #action_reload, #action_restart, #action_start, #action_stop, #define_resource_requirements, #initialize, #load_new_resource_state, #reload_service, #restart_service, #shared_resource_requirements, #start_service, #stop_service, #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
Methods included from Mixin::Command::Unix
Methods inherited from Chef::Provider
#action_nothing, #cleanup_after_converge, #cookbook_name, #define_resource_requirements, #events, #initialize, #node, #process_resource_requirements, #requirements, #resource_collection, #run_action, #set_updated_status, #whyrun_mode?, #whyrun_supported?
Methods included from DSL::Recipe
Methods included from Mixin::ConvertToClassName
#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename
Constructor Details
This class inherits a constructor from Chef::Provider::Service::Init
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Chef::DSL::Recipe
Instance Method Details
#disable_service ⇒ Object
46 47 48 |
# File 'lib/chef/provider/service/insserv.rb', line 46 def disable_service() run_command(:command => "/sbin/insserv -r -f #{@new_resource.service_name}") end |
#enable_service ⇒ Object
41 42 43 44 |
# File 'lib/chef/provider/service/insserv.rb', line 41 def enable_service() run_command(:command => "/sbin/insserv -r -f #{@new_resource.service_name}") run_command(:command => "/sbin/insserv -d -f #{@new_resource.service_name}") end |
#load_current_resource ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/chef/provider/service/insserv.rb', line 28 def load_current_resource super # Look for a /etc/rc.*/SnnSERVICE link to signifiy that the service would be started in a runlevel if Dir.glob("/etc/rc**/S*#{@current_resource.service_name}").empty? @current_resource.enabled false else @current_resource.enabled true end @current_resource end |