Class: Chef::Provider::Service::Arch
- Inherits:
-
Init
- Object
- Chef::Provider
- Chef::Provider::Service
- Simple
- Init
- Chef::Provider::Service::Arch
- Defined in:
- lib/chef/provider/service/arch.rb
Instance Attribute Summary
Attributes inherited from Chef::Provider
#current_resource, #new_resource, #run_context
Instance Method Summary collapse
-
#daemons {|entries| ... } ⇒ Object
Get list of all daemons from the file ‘/etc/rc.conf’.
- #disable_service ⇒ Object
- #enable_service ⇒ Object
-
#initialize(new_resource, run_context) ⇒ Arch
constructor
A new instance of Arch.
- #load_current_resource ⇒ Object
-
#update_daemons(entries) ⇒ Object
FIXME: Multiple entries of DAEMONS will cause very bad results :).
Methods inherited from Init
#reload_service, #restart_service, #start_service, #stop_service
Methods inherited from Simple
#ps_cmd, #reload_service, #restart_service, #start_service, #stop_service
Methods inherited from Chef::Provider::Service
#action_disable, #action_enable, #action_reload, #action_restart, #action_start, #action_stop, #reload_service, #restart_service, #start_service, #stop_service
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, build_from_file, #cookbook_name, #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::RecipeDefinitionDSLCore
Methods included from Mixin::Language
#data_bag, #data_bag_item, #platform?, #search, #value_for_platform
Constructor Details
#initialize(new_resource, run_context) ⇒ Arch
Returns a new instance of Arch.
24 25 26 27 |
# File 'lib/chef/provider/service/arch.rb', line 24 def initialize(new_resource, run_context) super @init_command = "/etc/rc.d/#{@new_resource.service_name}" end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Chef::Mixin::RecipeDefinitionDSLCore
Instance Method Details
#daemons {|entries| ... } ⇒ Object
Get list of all daemons from the file ‘/etc/rc.conf’. Mutiple lines and background form are supported. Example:
DAEMONS=(\
foobar \
@example \
!net \
)
48 49 50 51 52 53 54 55 56 57 |
# File 'lib/chef/provider/service/arch.rb', line 48 def daemons entries = [] if ::File.read("/etc/rc.conf").match(/DAEMONS=\((.*)\)/m) entries += $1.gsub(/\\?[\r\n]/, ' ').gsub(/# *[^ ]+/,' ').split(' ') if $1.length > 0 end yield(entries) if block_given? entries end |
#disable_service ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/chef/provider/service/arch.rb', line 93 def disable_service() new_daemons = [] entries = daemons if entries.include?("!#{new_resource.service_name}") # exists and disabled # new_daemons += entries else if entries.include?(new_resource.service_name) or entries.include?("@#{new_resource.service_name}") # exists but enabled (or enabled as a back-ground service) # FIXME: Does arch support !@foobar ? entries.each do |daemon| if [new_resource.service_name, "@#{new_resource.service_name}"].include?(daemon) new_daemons << "!#{new_resource.service_name}" else new_daemons << daemon end end end update_daemons(new_daemons) end end |
#enable_service ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/chef/provider/service/arch.rb', line 67 def enable_service() new_daemons = [] entries = daemons if entries.include?(new_resource.service_name) or entries.include?("@#{new_resource.service_name}") # exists and already enabled (or already enabled as a background service) # new_daemons += entries else if entries.include?("!#{new_resource.service_name}") # exists but disabled entries.each do |daemon| if daemon == "!#{new_resource.service_name}" new_daemons << new_resource.service_name else new_daemons << daemon end end else # does not exist new_daemons += entries new_daemons << new_resource.service_name end update_daemons(new_daemons) end end |
#load_current_resource ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/chef/provider/service/arch.rb', line 29 def load_current_resource raise Chef::Exceptions::Service unless ::File.exists?("/etc/rc.conf") raise Chef::Exceptions::Service unless ::File.read("/etc/rc.conf").match(/DAEMONS=\((.*)\)/m) super @current_resource.enabled(daemons.include?(@current_resource.service_name)) @current_resource end |
#update_daemons(entries) ⇒ Object
FIXME: Multiple entries of DAEMONS will cause very bad results :)
60 61 62 63 64 65 |
# File 'lib/chef/provider/service/arch.rb', line 60 def update_daemons(entries) content = ::File.read("/etc/rc.conf").gsub(/DAEMONS=\((.*)\)/m, "DAEMONS=(#{entries.join(' ')})") ::File.open("/etc/rc.conf", "w") do |f| f.write(content) end end |