summaryrefslogtreecommitdiffstats
path: root/lib/puppet/provider/service/smf.rb
blob: 0407c8479ca22ad67d4630e32d5e0c6ae857c794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Solaris 10 SMF-style services.
Puppet::Type.type(:service).provide :smf, :parent => :base do
    desc "Support for Sun's new Service Management Framework.

    Starting a service is effectively equivalent to enabling it, so there is
    only support for starting and stopping services, which also enables and
    disables them, respectively.

    By specifying manifest => \"/path/to/service.xml\", the SMF manifest will
    be imported if it does not exist.

    "

    defaultfor :operatingsystem => :solaris

    confine :operatingsystem => :solaris

    commands :adm => "/usr/sbin/svcadm", :svcs => "/usr/bin/svcs"
    commands :svccfg => "/usr/sbin/svccfg"

    def setupservice
        begin
            if resource[:manifest]
                [command(:svcs), "-l", @resource[:name]]
                if $CHILD_STATUS.exitstatus == 1
                    Puppet.notice "Importing #{@resource[:manifest]} for #{@resource[:name]}"
                    svccfg :import, resource[:manifest]
                end
            end
        rescue Puppet::ExecutionFailure => detail
            raise Puppet::Error.new( "Cannot config #{self.service} to enable it: #{detail}" )
        end
    end

    def enable
        self.start
    end

    def enabled?
        case self.status
        when :running
            return :true
        else
            return :false
        end
    end

    def disable
        self.stop
    end

    def restartcmd
        [command(:adm), :restart, @resource[:name]]
    end

    def startcmd
        self.setupservice
        case self.status
        when :stopped
            [command(:adm), :enable, @resource[:name]]
        when :maintenance
            [command(:adm), :clear, @resource[:name]]
        end
    end

    def status
        if @resource[:status]
            super
            return
        end

        begin
            # get the current state and the next state, and if the next
            # state is set (i.e. not "-") use it for state comparison
            states = svcs("-H", "-o", "state,nstate", @resource[:name]).chomp.split
            state = states[1] == "-" ? states[0] : states[1]
        rescue Puppet::ExecutionFailure
            info "Could not get status on service #{self.name}"
            return :stopped
        end

        case state
        when "online"
            #self.warning "matched running #{line.inspect}"
            return :running
        when "offline", "disabled", "uninitialized"
            #self.warning "matched stopped #{line.inspect}"
            return :stopped
        when "maintenance"
            return :maintenance
        when "legacy_run"
            raise Puppet::Error,
                "Cannot manage legacy services through SMF"
        else
            raise Puppet::Error,
                "Unmanageable state '#{state}' on service #{self.name}"
        end

    end

    def stopcmd
        [command(:adm), :disable, @resource[:name]]
    end
end