summaryrefslogtreecommitdiffstats
path: root/installmethod.py
blob: f295fe71cc9d60add51ec377edcda0f22f4533fa (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
class InstallMethod:

    def writeCleanupPath(self, f):
	pass

    def protectedPartitions(self):
        return None

    def readComps(self, hdlist):
	pass

    def getFilename(self, h):
	pass

    def readHeaders(self):
	pass

    def systemUnmounted(self):
	pass

    def systemMounted(self, fstab, mntPoint, selected):
	pass

    def filesDone(self):
	pass

    def unlinkFilename(self, fullName):
	pass

    def __init__(self):
	pass