Class: Chef::Provider::Service::Debian
- Inherits:
-
Init
- Object
- Chef::Provider
- Chef::Provider::Service
- Simple
- Init
- Chef::Provider::Service::Debian
- Defined in:
- lib/chef/provider/service/debian.rb
Constant Summary collapse
- UPDATE_RC_D_ENABLED_MATCHES =
%r{/rc[\dS].d/S|not installed}i.freeze
- UPDATE_RC_D_PRIORITIES =
%r{/rc([\dS]).d/([SK])(\d\d)}i.freeze
Instance Attribute Summary
Attributes inherited from Init
Attributes inherited from Simple
Attributes inherited from Chef::Provider
#action, #current_resource, #logger, #new_resource, #recipe_name, #run_context
Class Method Summary collapse
Instance Method Summary collapse
-
#action_enable ⇒ Object
Override method from parent to ensure priority is up-to-date.
- #define_resource_requirements ⇒ Object
- #disable_service ⇒ Object
- #enable_service ⇒ Object
- #get_priority ⇒ Object
- #load_current_resource ⇒ Object
-
#parse_init_file(path) ⇒ Object
returns a list of levels that the service should be stopped or started on.
- #service_currently_enabled?(priority) ⇒ Boolean
- #set_priority ⇒ Object
Methods inherited from Init
#initialize, #reload_service, #restart_service, #start_service, #stop_service
Methods inherited from Simple
#reload_service, #restart_service, #shared_resource_requirements, #start_service, #stop_service
Methods inherited from Chef::Provider::Service
#action_disable, #action_mask, #action_reload, #action_restart, #action_start, #action_stop, #action_unmask, #initialize, #load_new_resource_state, #mask_service, #reload_service, #restart_service, #shared_resource_requirements, #start_service, #stop_service, #supports, #unmask_service, #user_services_requirements
Methods inherited from Chef::Provider
action, #action_nothing, #check_resource_semantics!, #cleanup_after_converge, #compile_and_converge_action, #converge_by, #converge_if_changed, #cookbook_name, #description, #events, include_resource_dsl?, include_resource_dsl_module, #initialize, #introduced, #node, #process_resource_requirements, provides, provides?, #requirements, #resource_collection, #resource_updated?, #run_action, #set_updated_status, use_inline_resources, #whyrun_mode?, #whyrun_supported?
Methods included from Mixin::Provides
#provided_as, #provides, #provides?
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::LazyModuleInclude
#descendants, #include, #included
Methods included from Mixin::ShellOut
apply_default_env, maybe_add_timeout, #shell_out, #shell_out!
Methods included from Mixin::PowershellOut
#powershell_out, #powershell_out!
Methods included from Mixin::WindowsArchitectureHelper
#assert_valid_windows_architecture!, #disable_wow64_file_redirection, #forced_32bit_override_required?, #is_i386_process_on_x86_64_windows?, #node_supports_windows_architecture?, #node_windows_architecture, #restore_wow64_file_redirection, #valid_windows_architecture?, #with_os_architecture, #wow64_architecture_override_required?, #wow64_directory
Methods included from Mixin::PowershellExec
Methods included from DSL::Powershell
Methods included from DSL::RegistryHelper
#registry_data_exists?, #registry_get_subkeys, #registry_get_values, #registry_has_subkeys?, #registry_key_exists?, #registry_value_exists?
Methods included from DSL::DataQuery
#data_bag, #data_bag_item, #search, #tagged?
Methods included from EncryptedDataBagItem::CheckEncrypted
Methods included from DSL::PlatformIntrospection
#older_than_win_2012_or_8?, #platform?, #platform_family?, #value_for_platform, #value_for_platform_family
Methods included from Mixin::NotifyingBlock
#notifying_block, #subcontext_block
Methods included from DSL::DeclareResource
#build_resource, #declare_resource, #delete_resource, #delete_resource!, #edit_resource, #edit_resource!, #find_resource, #find_resource!, #resources, #with_run_context
Constructor Details
This class inherits a constructor from Chef::Provider::Service::Init
Class Method Details
.supports?(resource, action) ⇒ Boolean
32 33 34 |
# File 'lib/chef/provider/service/debian.rb', line 32 def self.supports?(resource, action) service_script_exist?(:initd, resource.service_name) end |
Instance Method Details
#action_enable ⇒ Object
Override method from parent to ensure priority is up-to-date
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/chef/provider/service/debian.rb', line 133 def action_enable if new_resource.priority.nil? priority_ok = true else priority_ok = @current_resource.priority == new_resource.priority end if current_resource.enabled && priority_ok logger.trace("#{new_resource} already enabled - nothing to do") else converge_by("enable service #{new_resource}") do enable_service logger.info("#{new_resource} enabled") end end load_new_resource_state new_resource.enabled(true) end |
#define_resource_requirements ⇒ Object
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/chef/provider/service/debian.rb', line 43 def define_resource_requirements # do not call super here, inherit only shared_requirements shared_resource_requirements requirements.assert(:all_actions) do |a| update_rcd = "/usr/sbin/update-rc.d" a.assertion { ::File.exists? update_rcd } a. Chef::Exceptions::Service, "#{update_rcd} does not exist!" # no whyrun recovery - this is a base system component of debian # distros and must be present end requirements.assert(:all_actions) do |a| a.assertion { @got_priority == true } a. Chef::Exceptions::Service, "Unable to determine priority for service" # This can happen if the service is not yet installed,so we'll fake it. a.whyrun ["Unable to determine priority of service, assuming service would have been correctly installed earlier in the run.", "Assigning temporary priorities to continue.", "If this service is not properly installed prior to this point, this will fail."] do temp_priorities = { "6" => [:stop, "20"], "0" => [:stop, "20"], "1" => [:stop, "20"], "2" => [:start, "20"], "3" => [:start, "20"], "4" => [:start, "20"], "5" => [:start, "20"] } current_resource.priority(temp_priorities) end end end |
#disable_service ⇒ Object
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/chef/provider/service/debian.rb', line 165 def disable_service if new_resource.priority.is_a? Integer # Stop processes in reverse order of start using '100 - start_priority' shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} remove") shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} stop #{100 - new_resource.priority} 2 3 4 5 .") elsif new_resource.priority.is_a? Hash # we call the same command regardless of we're enabling or disabling # users passing a Hash are responsible for setting their own stop priorities set_priority else # no priority, using '100 - 20 (update-rc.d default)' to stop in reverse order of start shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} remove") shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} stop 80 2 3 4 5 .") end end |
#enable_service ⇒ Object
151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/chef/provider/service/debian.rb', line 151 def enable_service if new_resource.priority.is_a? Integer shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} remove") shell_out!("/usr/sbin/update-rc.d #{new_resource.service_name} defaults #{new_resource.priority} #{100 - new_resource.priority}") elsif new_resource.priority.is_a? Hash # we call the same command regardless of we're enabling or disabling # users passing a Hash are responsible for setting their own start priorities set_priority else # No priority, go with update-rc.d defaults shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} remove") shell_out!("/usr/sbin/update-rc.d #{new_resource.service_name} defaults") end end |
#get_priority ⇒ Object
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/chef/provider/service/debian.rb', line 91 def get_priority priority = {} rc_files = [] levels = parse_init_file(@init_command) levels.each do |level| rc_files.push Dir.glob("/etc/rc#{level}.d/[SK][0-9][0-9]#{current_resource.service_name}") end rc_files.flatten.each do |line| if UPDATE_RC_D_PRIORITIES =~ line # priority[runlevel] = [ S|K, priority ] # S = Start, K = Kill # debian runlevels: 0 Halt, 1 Singleuser, 2 Multiuser, 3-5 == 2, 6 Reboot priority[$1] = [($2 == "S" ? :start : :stop), $3] end end # Reduce existing priority back to an integer if appropriate, picking # runlevel 2 as a baseline if priority[2] && [2..5].all? { |runlevel| priority[runlevel] == priority[2] } priority = priority[2].last end @got_priority = true priority end |
#load_current_resource ⇒ Object
36 37 38 39 40 41 |
# File 'lib/chef/provider/service/debian.rb', line 36 def load_current_resource super current_resource.priority(get_priority) current_resource.enabled(service_currently_enabled?(current_resource.priority)) current_resource end |
#parse_init_file(path) ⇒ Object
returns a list of levels that the service should be stopped or started on
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/chef/provider/service/debian.rb', line 74 def parse_init_file(path) return [] unless ::File.exist?(path) in_info = false ::File.readlines(path).each_with_object([]) do |line, acc| if line =~ /^### BEGIN INIT INFO/ in_info = true elsif line =~ /^### END INIT INFO/ break acc elsif in_info if line =~ /Default-(Start|Stop):\s+(\d.*)/ acc << $2.split(" ") end end end.flatten end |
#service_currently_enabled?(priority) ⇒ Boolean
119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/chef/provider/service/debian.rb', line 119 def service_currently_enabled?(priority) enabled = false priority.each do |runlevel, arguments| logger.trace("#{new_resource} runlevel #{runlevel}, action #{arguments[0]}, priority #{arguments[1]}") # if we are in a update-rc.d default startup runlevel && we start in this runlevel if %w{ 1 2 3 4 5 S }.include?(runlevel) && arguments[0] == :start enabled = true end end enabled end |
#set_priority ⇒ Object
181 182 183 184 185 186 187 188 189 190 |
# File 'lib/chef/provider/service/debian.rb', line 181 def set_priority args = "" new_resource.priority.each do |level, o| action = o[0] priority = o[1] args += "#{action} #{priority} #{level} . " end shell_out!("/usr/sbin/update-rc.d -f #{new_resource.service_name} remove") shell_out!("/usr/sbin/update-rc.d #{new_resource.service_name} #{args}") end |