summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/Solaris.py
blob: b27a3f12abdb70802704681788d0b51a0e245cca (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
# This is the bcfg2 support for solaris
'''This provides (vestigal) bcfg2 support for Solaris'''
__revision__ = '$Revision$'

from Bcfg2.Client.Toolset import Toolset

def Detect():
    # until the code works
    return False

class Solaris(Toolset):
    '''This class implelements support for SYSV packages and standard /etc/init.d services'''

    def VerifyService(self, entry):
        return False

    def VerifyPackage(self, entry):
        return False

    def InstallService(self, entry):
        return False

    def InstallPackage(self, entry):
        return False