Sha256: 9244c29649399ee08e69c732411858cb81f31d1d0afc99a5567a6850afa40878

Contents?: true

Size: 1.44 KB

Versions: 6

Compression:

Stored size: 1.44 KB

Contents

# 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 "Gentoo's form of ``init``-style service management.

    Uses ``rc-update`` for service enabling and disabling.

    "

    commands :update => "/sbin/rc-update"

    confine :operatingsystem => :gentoo

    defaultfor :operatingsystem => :gentoo

    def self.defpath
        superclass.defpath
    end

    def disable
        begin
            output = update :del, @resource[:name], :default
        rescue Puppet::ExecutionFailure
            raise Puppet::Error, "Could not disable %s: %s" %
                [self.name, output]
        end
    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)/
            return :true
        else
            return :false
        end
    end

    def enable
        begin
            output = update :add, @resource[:name], :default
        rescue Puppet::ExecutionFailure
            raise Puppet::Error, "Could not enable %s: %s" %
                [self.name, output]
        end
    end
end

# $Id $

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
puppet-0.25.5 lib/puppet/provider/service/gentoo.rb
puppet-0.25.4 lib/puppet/provider/service/gentoo.rb
puppet-0.25.3 lib/puppet/provider/service/gentoo.rb
puppet-0.25.2 lib/puppet/provider/service/gentoo.rb
puppet-0.25.1 lib/puppet/provider/service/gentoo.rb
puppet-0.25.0 lib/puppet/provider/service/gentoo.rb