Class: Chef::Resource::Service
- Inherits:
-
Chef::Resource
- Object
- Chef::Resource
- Chef::Resource::Service
- Defined in:
- lib/chef/resource/service.rb
Constant Summary
Constants inherited from Chef::Resource
Instance Attribute Summary
Attributes inherited from Chef::Resource
#allowed_actions, #cookbook_name, #elapsed_time, #enclosing_provider, #not_if_args, #only_if_args, #params, #provider, #recipe_name, #resource_name, #retries, #retry_delay, #run_context, #source_line, #updated
Instance Method Summary collapse
-
#enabled(arg = nil) ⇒ Object
if the service is enabled or not.
-
#initialize(name, run_context = nil) ⇒ Service
constructor
A new instance of Service.
- #parameters(arg = nil) ⇒ Object
-
#pattern(arg = nil) ⇒ Object
regex for match against ps -ef when !supports && status == nil.
-
#priority(arg = nil) ⇒ Object
Priority arguments can have two forms:.
- #reload_command(arg = nil) ⇒ Object
-
#restart_command(arg = nil) ⇒ Object
command to call to restart service.
-
#running(arg = nil) ⇒ Object
if the service is running or not.
- #service_name(arg = nil) ⇒ Object
-
#start_command(arg = nil) ⇒ Object
command to call to start service.
-
#status_command(arg = nil) ⇒ Object
command to call to get status of service.
-
#stop_command(arg = nil) ⇒ Object
command to call to stop service.
- #supports(args = {}) ⇒ Object
Methods inherited from Chef::Resource
#action, #add_notification, #after_created, #as_json, attribute, build_from_file, #cookbook_version, #customize_exception, #defined_at, #delayed_notifications, dsl_name, #epic_fail, #events, #identity, identity_attr, #ignore_failure, #immediate_notifications, #inspect, #is, json_create, #load_prior_resource, #method_missing, #name, #node, #noop, #not_if, #notifies, #notifies_delayed, #notifies_immediately, #only_if, platform_map, provider_base, #provider_for_action, provides, #resolve_notification_references, resource_for_node, resource_for_platform, #resources, #run_action, #should_skip?, #state, state_attrs, #subscribes, #to_hash, #to_json, #to_s, #to_text, #updated?, #updated_by_last_action, #updated_by_last_action?, #validate_action
Methods included from Mixin::ConvertToClassName
#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename
Methods included from Mixin::Deprecation
Methods included from Mixin::Language
#data_bag, #data_bag_item, #platform?, #platform_family?, #search, #value_for_platform, #value_for_platform_family
Methods included from Mixin::ParamsValidate
Methods included from Mixin::CheckHelper
Constructor Details
#initialize(name, run_context = nil) ⇒ Service
Returns a new instance of Service.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/chef/resource/service.rb', line 30 def initialize(name, run_context=nil) super @resource_name = :service @service_name = name @enabled = nil @running = nil @parameters = nil @pattern = service_name @start_command = nil @stop_command = nil @status_command = nil @restart_command = nil @reload_command = nil @priority = nil @action = "nothing" @startup_type = :automatic @supports = { :restart => false, :reload => false, :status => false } @allowed_actions.push(:enable, :disable, :start, :stop, :restart, :reload) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Chef::Resource
Instance Method Details
#enabled(arg = nil) ⇒ Object
if the service is enabled or not
112 113 114 115 116 117 118 |
# File 'lib/chef/resource/service.rb', line 112 def enabled(arg=nil) set_or_return( :enabled, arg, :kind_of => [ TrueClass, FalseClass ] ) end |
#parameters(arg = nil) ⇒ Object
145 146 147 148 149 150 |
# File 'lib/chef/resource/service.rb', line 145 def parameters(arg=nil) set_or_return( :parameters, arg, :kind_of => [ Hash ] ) end |
#pattern(arg = nil) ⇒ Object
regex for match against ps -ef when !supports && status == nil
59 60 61 62 63 64 65 |
# File 'lib/chef/resource/service.rb', line 59 def pattern(arg=nil) set_or_return( :pattern, arg, :kind_of => [ String ] ) end |
#priority(arg = nil) ⇒ Object
Priority arguments can have two forms:
-
a simple number, in which the default start runlevels get that as the start value and stop runlevels get 100 - value.
-
a hash like { 2 => [:start, 20], 3 => [:stop, 55] }, where the service will be marked as started with priority 20 in runlevel 2, stopped in 3 with priority 55 and no symlinks or similar for other runlevels
139 140 141 142 143 |
# File 'lib/chef/resource/service.rb', line 139 def priority(arg=nil) set_or_return(:priority, arg, :kind_of => [ Integer, String, Hash ]) end |
#reload_command(arg = nil) ⇒ Object
103 104 105 106 107 108 109 |
# File 'lib/chef/resource/service.rb', line 103 def reload_command(arg=nil) set_or_return( :reload_command, arg, :kind_of => [ String ] ) end |
#restart_command(arg = nil) ⇒ Object
command to call to restart service
95 96 97 98 99 100 101 |
# File 'lib/chef/resource/service.rb', line 95 def restart_command(arg=nil) set_or_return( :restart_command, arg, :kind_of => [ String ] ) end |
#running(arg = nil) ⇒ Object
if the service is running or not
121 122 123 124 125 126 127 |
# File 'lib/chef/resource/service.rb', line 121 def running(arg=nil) set_or_return( :running, arg, :kind_of => [ TrueClass, FalseClass ] ) end |
#service_name(arg = nil) ⇒ Object
50 51 52 53 54 55 56 |
# File 'lib/chef/resource/service.rb', line 50 def service_name(arg=nil) set_or_return( :service_name, arg, :kind_of => [ String ] ) end |
#start_command(arg = nil) ⇒ Object
command to call to start service
68 69 70 71 72 73 74 |
# File 'lib/chef/resource/service.rb', line 68 def start_command(arg=nil) set_or_return( :start_command, arg, :kind_of => [ String ] ) end |
#status_command(arg = nil) ⇒ Object
command to call to get status of service
86 87 88 89 90 91 92 |
# File 'lib/chef/resource/service.rb', line 86 def status_command(arg=nil) set_or_return( :status_command, arg, :kind_of => [ String ] ) end |
#stop_command(arg = nil) ⇒ Object
command to call to stop service
77 78 79 80 81 82 83 |
# File 'lib/chef/resource/service.rb', line 77 def stop_command(arg=nil) set_or_return( :stop_command, arg, :kind_of => [ String ] ) end |
#supports(args = {}) ⇒ Object
152 153 154 155 156 157 158 159 160 |
# File 'lib/chef/resource/service.rb', line 152 def supports(args={}) if args.is_a? Array args.each { |arg| @supports[arg] = true } elsif args.any? @supports = args else @supports end end |