Sha256: ecab5c210303dae29cc6a067141e33319a3d1aae956c4e08c7771c14df4d8e40
Contents?: true
Size: 1.16 KB
Versions: 20
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true # Manage gentoo services. Start/stop is the same as InitSvc, but enable/disable # is special. Puppet::Type.type(:service).provide :gentoo, :parent => :init do desc <<-EOT Gentoo's form of `init`-style service management. Uses `rc-update` for service enabling and disabling. EOT commands :update => "/sbin/rc-update" confine 'os.name' => :gentoo def disable output = update :del, @resource[:name], :default rescue Puppet::ExecutionFailure => e raise Puppet::Error, "Could not disable #{name}: #{output}", e.backtrace end def enabled? begin output = update :show rescue Puppet::ExecutionFailure return :false end line = output.split(/\n/).find { |l| l.include?(@resource[:name]) } return :false unless line # If it's enabled then it will print output showing service | runlevel if output =~ /^\s*#{@resource[:name]}\s*\|\s*(boot|default)/ :true else :false end end def enable output = update :add, @resource[:name], :default rescue Puppet::ExecutionFailure => e raise Puppet::Error, "Could not enable #{name}: #{output}", e.backtrace end end
Version data entries
20 entries across 20 versions & 1 rubygems