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
|
# Install method for disk image installs (CD & NFS)
from comps import ComponentSet, HeaderList
from installmethod import InstallMethod
import os
import isys
import rpm
import string
import todo
FILENAME = 1000000
class HardDriveInstallMethod(InstallMethod):
def mountMedia(self):
if (self.isMounted):
raise SystemError, "trying to mount already-mounted image!"
f = open("/proc/mounts", "r")
l = f.readlines()
f.close()
for line in l:
s = string.split(line)
if s[0] == "/tmp/" + self.device:
self.tree = s[1] + "/"
return
isys.makeDevInode(self.device, '/tmp/' + self.device)
isys.mount('/tmp/' + self.device, "/tmp/hdimage",
fstype = self.fstype);
self.tree = "/tmp/hdimage/"
self.isMounted = 1
def umountMedia(self):
if self.isMounted:
isys.umount(self.tree)
self.tree = None
self.isMounted = 0
def readComps(self, hdlist):
self.mountMedia()
cs = ComponentSet(self.tree + self.path +
'/RedHat/base/comps', hdlist)
self.umountMedia()
return cs
def getFilename(self, h):
return self.tree + self.path + "/RedHat/RPMS/" + self.fnames[h]
def readHeaders(self):
self.mountMedia()
hl = []
path = self.tree + self.path + "/RedHat/RPMS"
for n in os.listdir(path):
fd = os.open(path + "/" + n, 0)
try:
(h, isSource) = rpm.headerFromPackage(fd)
if (h and not isSource):
self.fnames[h] = n
hl.append(h)
except:
pass
os.close(fd)
self.umountMedia()
return HeaderList(hl)
def systemMounted(self, fstab, mntPoint):
self.mountMedia()
def filesDone(self):
self.umountMedia()
def __init__(self, device, type, path):
InstallMethod.__init__(self)
self.device = device
self.path = path
self.fstype = type
self.fnames = {}
self.isMounted = 0
|