summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/Gentoo.py
blob: 3773fafb1e7b6fd9e30bfcef1d336172a467512c (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 gentoo
'''This provides (vestigal) Gentoo support'''
__revision__ = '$Revision$'

from Bcfg2.Client.Toolset import Toolset

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

class Gentoo(Toolset):
    '''This class implelements support for emerge packages and standard rc-update 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