summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Client/Tools/Systemd.py
blob: b35bff46ab008db70b7882ad23740692ee2ea835 (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
# This is the bcfg2 support for systemd

"""This is systemd support."""

import Bcfg2.Client.Tools

class Systemd(Bcfg2.Client.Tools.SvcTool):
    """Systemd support for Bcfg2."""
    name = 'Systemd'
    __execs__ = ['/bin/systemctl']
    __handles__ = [('Service', 'systemd')]
    __req__ = {'Service': ['name', 'status']}

    def get_svc_command(self, service, action):
        return "/bin/systemctl %s %s.service" % (action, service.get('name'))

    def VerifyService(self, entry, _):
        """Verify Service status for entry."""
        cmd = "/bin/systemctl status %s.service " % (entry.get('name'))
        raw = ''.join(self.cmd.run(cmd)[1])

        if raw.find('Loaded: error') >= 0:
            entry.set('current_status', 'off')
            status = False

        elif raw.find('Active: active') >= 0:
            entry.set('current_status', 'on')
            if entry.get('status') == 'off':
                status = False
            else:
                status = True

        else:
            entry.set('current_status', 'off')
            if entry.get('status') == 'on':
                status = False
            else:
                status = True

        return status

    def InstallService(self, entry):
        """Install Service entry."""
        if entry.get('status') == 'on':
            rv = self.cmd.run(self.get_svc_command(entry, 'enable'))[0] == 0
            rv &= self.cmd.run(self.get_svc_command(entry, 'start'))[0] == 0
        else:
            rv = self.cmd.run(self.get_svc_command(entry, 'stop'))[0] == 0
            rv &= self.cmd.run(self.get_svc_command(entry, 'disable'))[0] == 0

        return rv