# File lib/chef/provider/service.rb, line 74 def action_disable if @current_resource.enabled converge_by("disable service #{@new_resource}") do disable_service Chef::Log.info("#{@new_resource} disabled") end else Chef::Log.debug("#{@new_resource} already disabled - nothing to do") end load_new_resource_state @new_resource.enabled(false) end
# File lib/chef/provider/service.rb, line 61 def action_enable if @current_resource.enabled Chef::Log.debug("#{@new_resource} already enabled - nothing to do") else converge_by("enable service #{@new_resource}") do enable_service Chef::Log.info("#{@new_resource} enabled") end end load_new_resource_state @new_resource.enabled(true) end
# File lib/chef/provider/service.rb, line 122 def action_reload if @current_resource.running converge_by("reload service #{@new_resource}") do reload_service Chef::Log.info("#{@new_resource} reloaded") end end load_new_resource_state end
# File lib/chef/provider/service.rb, line 113 def action_restart converge_by("restart service #{@new_resource}") do restart_service Chef::Log.info("#{@new_resource} restarted") end load_new_resource_state @new_resource.running(true) end
# File lib/chef/provider/service.rb, line 87 def action_start unless @current_resource.running converge_by("start service #{@new_resource}") do start_service Chef::Log.info("#{@new_resource} started") end else Chef::Log.debug("#{@new_resource} already running - nothing to do") end load_new_resource_state @new_resource.running(true) end
# File lib/chef/provider/service.rb, line 100 def action_stop if @current_resource.running converge_by("stop service #{@new_resource}") do stop_service Chef::Log.info("#{@new_resource} stopped") end else Chef::Log.debug("#{@new_resource} already stopped - nothing to do") end load_new_resource_state @new_resource.running(false) end
# File lib/chef/provider/service.rb, line 51 def define_resource_requirements requirements.assert(:reload) do |a| a.assertion { @new_resource.supports[:reload] || @new_resource.reload_command } a.failure_message Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :reload" # if a service is not declared to support reload, that won't # typically change during the course of a run - so no whyrun # alternative here. end end
# File lib/chef/provider/service.rb, line 136 def disable_service raise Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :disable" end
# File lib/chef/provider/service.rb, line 132 def enable_service raise Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :enable" end
# File lib/chef/provider/service.rb, line 37 def load_new_resource_state # If the user didn't specify a change in enabled state, # it will be the same as the old resource if ( @new_resource.enabled.nil? ) @new_resource.enabled(@current_resource.enabled) end if ( @new_resource.running.nil? ) @new_resource.running(@current_resource.running) end end
# File lib/chef/provider/service.rb, line 152 def reload_service raise Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :restart" end
# File lib/chef/provider/service.rb, line 148 def restart_service raise Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :restart" end
# File lib/chef/provider/service.rb, line 140 def start_service raise Chef::Exceptions::UnsupportedAction, "#{self.to_s} does not support :start" end
Generated with the Darkfish Rdoc Generator 2.