Class: Chef::Provider::Service::Simple

Inherits:
Chef::Provider::Service show all
Includes:
Mixin::ShellOut
Defined in:
lib/chef/provider/service/simple.rb

Direct Known Subclasses

Init, Macosx, Systemd, Upstart

Constant Summary

Constants included from Mixin::ShellOut

Mixin::ShellOut::DEPRECATED_OPTIONS

Instance Attribute Summary

Attributes inherited from Chef::Provider

#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 Chef::Provider::Service

#action_disable, #action_enable, #action_reload, #action_restart, #action_start, #action_stop, #disable_service, #enable_service, #initialize

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, build_from_file, #cookbook_name, #initialize, #node, #resource_collection

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename

Methods included from Mixin::EnforceOwnershipAndPermissions

#enforce_ownership_and_permissions

Methods included from Mixin::RecipeDefinitionDSLCore

#method_missing

Methods included from Mixin::Language

#data_bag, #data_bag_item, #platform?, #platform_family?, #search, #value_for_platform, #value_for_platform_family

Constructor Details

This class inherits a constructor from Chef::Provider::Service

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Chef::Mixin::RecipeDefinitionDSLCore

Instance Method Details

#load_current_resourceObject



30
31
32
33
34
35
36
37
# File 'lib/chef/provider/service/simple.rb', line 30

def load_current_resource
  @current_resource = Chef::Resource::Service.new(@new_resource.name)
  @current_resource.service_name(@new_resource.service_name)

  determine_current_status!

  @current_resource
end

#reload_serviceObject



65
66
67
68
69
70
71
# File 'lib/chef/provider/service/simple.rb', line 65

def reload_service
  if @new_resource.reload_command
    shell_out!(@new_resource.reload_command)
  else
    raise Chef::Exceptions::Service, "#{self.to_s} requires that reload_command to be set"
  end
end

#restart_serviceObject



55
56
57
58
59
60
61
62
63
# File 'lib/chef/provider/service/simple.rb', line 55

def restart_service
  if @new_resource.restart_command
    shell_out!(@new_resource.restart_command)
  else
    stop_service
    sleep 1
    start_service
  end
end

#start_serviceObject



39
40
41
42
43
44
45
# File 'lib/chef/provider/service/simple.rb', line 39

def start_service
  if @new_resource.start_command
    shell_out!(@new_resource.start_command)
  else
    raise Chef::Exceptions::Service, "#{self.to_s} requires that start_command to be set"
  end
end

#stop_serviceObject



47
48
49
50
51
52
53
# File 'lib/chef/provider/service/simple.rb', line 47

def stop_service
  if @new_resource.stop_command
    shell_out!(@new_resource.stop_command)
  else
    raise Chef::Exceptions::Service, "#{self.to_s} requires that stop_command to be set"
  end
end