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
|
'''launchd support for Bcfg2'''
__revision__ = '$Revision: 2596 $'
import glob, os
import Bcfg2.Client.Tools
class LaunchD(Bcfg2.Client.Tools.Tool):
'''Support for Mac OS X Launchd Services'''
__handles__ = [('Service', 'launchd')]
__execs__ = ['/bin/launchctl', '/usr/bin/defaults']
__name__ = 'LaunchD'
__req__ = {'Service':['name', 'status']}
#currently requires the path to the plist to load/unload, and Name is acually a reverse-fqdn (or the label)
def FindPlist(self, entry):
'''Locate plist file that provides given reverse-fqdn name'''
'''/Library/LaunchAgents Per-user agents provided by the administrator.
/Library/LaunchDaemons System wide daemons provided by the administrator.
/System/Library/LaunchAgents Mac OS X Per-user agents.
/System/Library/LaunchDaemons Mac OS X System wide daemons.'''
plistLocations = ["/Library/LaunchDaemons","/System/Library/LaunchDaemons"]
plistMapping = []
for directory in plistLocations:
for daemon in os.listdir(directory):
try:
plistMapping.append(dict(zip(self.cmd.run("defaults read %s/%s"%\
(directory,daemon.rsplit('.')[0]))[1],
"%s/%s"%(directory,daemon))))
except KeyError:
pass
try:
return plistMapping[entry.get('name')]
except KeyError:
return None
def VerifyService(self, entry, _):
'''Verify Launchd Service Entry'''
try:
services = self.cmd.run("/bin/launchctl list")
except IndexError:#happens when no services are running (should be never)
services = []
if entry.get('name') in services:#doesn't check if non-spawning services are Started
return entry.get('status') == 'on'
else:
self.logger.debug("Didn't find service Loaded (LaunchD running under same user as bcfg)")
return entry.get('status') == 'off'
try: #Perhaps add the "-w" flag to load and unload to modify the file itself!
self.cmd.run("/bin/launchctl load %s" % self.FindPlist(entry))
except IndexError:
return "on"
return "off"
def InstallService(self, entry):
'''Enable or Disable LaunchD Item'''
if entry.get('status') == 'on':
cmdrc = self.cmd.run("/bin/launchctl load -w %s" % self.FindPlist(entry))[0]
else:
cmdrc = self.cmd.run("/bin/launchctl unload -w %s" % self.FindPlist(entry))[0]
return cmdrc == 0
def Remove(self, svcs):
'''Remove Extra LaunchD entries'''
pass
def FindExtra(self):
'''Find Extra LaunchD Services'''
allsrv = self.cmd.run("/bin/launchctl list")
[allsrv.remove(svc) for svc in self.getSupportedEntries() if svc in allsrv]
return [Bcfg2.Client.XML.Element("Service", type='launchd', name=name) \
for name in allsrv]
def BundleUpdated(self, bundle):
'''Reload LaunchD plist'''
for entry in [entry for entry in bundle if self.handlesEntry(entry)]:
if not self.canInstall(entry):
self.logger.error("Insufficient information to restart service %s" % (entry.get('name')))
else:
if entry.get('status') == 'on' and self.FindPlist(entry):
#may need to start/stop as well!
self.logger.info("Reloading LaunchD service %s" % (entry.get("name")))
#stop?
self.cmd.run("/bin/launchctl unload %s" % (self.FindPlist(entry)))#what if it disappeared? how do we stop services that are currently running but the plist disappeared?!
self.cmd.run("/bin/launchctl load %s" % (self.FindPlist(entry)))
#start?
else:
#may need to stop as well!
self.cmd.run("/bin/launchctl unload %s" % (self.FindPlist(entry)))
|