summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/Solaris.py
blob: e1b2dcab10b148c35e13acd9eab30f016b093738 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# This is the bcfg2 support for solaris
'''This provides (vestigal) bcfg2 support for Solaris'''
__revision__ = '$Revision: 1.3 $'

from os import popen, system
from popen2 import Popen4

from Bcfg2.Client.Toolset import Toolset

class Solaris(Toolset):
    '''This class implelements support for SYSV packages and standard /etc/init.d services'''
    pkgtool = ("/usr/sbin/pkgadd -d %s -n all", ("%s", ["url"]))

    def __init__(self, cfg, setup):
	Toolset.__init__(self, cfg, setup)
	self.cfg = cfg
	self.pkgwork = {'add':[], 'update':[], 'remove':[]}
	self.installed = {}
	self.extra_services = []
	self.Refresh()

    def Refresh(self):
	'''Refresh memory hashes of packages'''
	self.installed = {}

	# Build list of packages
	instp = popen("/usr/bin/pkginfo -x")
	lines = instp.readlines()
	while (lines):
	    l1 = lines.pop()
	    l2 = lines.pop()
	    name = l2.split()[0]
	    version = l1.split()[1]
	    self.installed[name] = version 

    def VerifyService(self, entry):
	'''Verify Service status for entry'''
	try:
	    srvdata = popen("/usr/bin/svcs -H -o STA %s" % entry.attrib['name']).readlines()[0].split()
        except IndexError:
	    # Ocurrs when no lines are returned (service not installed)
	    return False

        if entry.get('status') == 'on':
	    return srvdata[0] == 'ON'
        else:
	    return srvdata[0] == 'OFF' or srvdata[0] == 'UN' or srvdata[0] == 'MNT' or srvdata[0] == 'DIS' or srvdata[0] == 'DGD'


    def InstallService(self, entry):
	'''Install Service entry'''
	system("/usr/sbin/svcadm enable -r %s" % (entry.attrib['name']))
	self.CondPrint('verbose', "Installing Service %s" % (entry.get('name')))
	if entry.attrib['status'] == 'off':
	    if self.setup['dryrun']:
		print "Disabling Service %s" % (entry.get('name'))
	    else:
		cmdrc = system("/usr/sbin/svcadm disable %s" % (entry.attrib['name']))
	else:
	    if self.setup['dryrun']:
		print "Enabling Service %s" % (entry.attrib['name'])
	    else:
		cmdrc = system("/usr/sbin/svcadm enable %s" % (entry.attrib['name']))
	if cmdrc == 0:
	    return True
	else:
	    return False

    def VerifyPackage(self, entry):
	'''Verify Package status for entry'''
        if not (entry.get('name') and entry.get('version')):
            print "Can't verify package, not enough data."
            return False
        cmdrc = system("/usr/bin/pkginfo -q -v \"%s\" %s" % (entry.get('version'), entry.get('name')))
        if cmdrc != 0:
            self.CondPrint('debug', "Package %s version incorrect" % entry.get('name'))
        else:
            if entry.attrib.get('verify', 'true') == 'true':
                if self.setup['quick']:
                    return True
                verp = Popen4("/usr/sbin/pkgchk -n %s" % (entry.get('name')), bufsize=16384)
                odata = ''
                vstat = verp.poll()
                while vstat == -1:
                    odata += verp.fromchild.read()
                    vstat = verp.poll()
                output = [line for line in odata.split("\n") if line]
                if vstat == 0:
                    return True
                else:
                #    if len([name for name in output if name.split()[-1] not in modlist]):
                #        return True
                #    else:
                    self.CondPrint('debug', "Package %s content verification failed" % (entry.get('name')))
        return False

    def Inventory(self):
	'''Do standard inventory plus debian extra service check'''
	Toolset.Inventory(self)
	allsrv = popen("/usr/bin/svcs -a -H -o SVC").readlines()
	# for goodline [ x.strip() for x in openfile.readlines()]
	csrv = self.cfg.findall(".//Service")
	print csrv

    def HandleExtra(self):
        '''Deal with extra configuration detected'''
	if len(self.pkgwork) > 0:
	    if self.setup['remove'] in ['all', 'packages']:
		self.CondPrint('verbose', "Removing packages: %s" % (self.pkgwork['remove']))
		system("/usr/sbin/pkgrm -n %s" % " ".join(self.pkgwork['remove']))
            else:
		self.CondPrint('verbose', "Need to remove packages: %s" % (self.pkgwork['remove']))
	if len(self.extra_services) > 0:
	    if self.setup['remove'] in ['all', 'services']:
		self.CondPrint('verbose', "Removing services: %s" % (self.extra_services))
		for service in self.extra_services:
		    system("/usr/sbin/svcadm disable %s" % service)
	    else:
		self.CondPrint('verbose', "Need to remove services: %s" % (self.extra_services))