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
120
121
122
123
124
125
126
127
128
129
|
# Install method for disk image installs (CD & NFS)
from comps import ComponentSet, HeaderListFromFile
from installmethod import InstallMethod
import iutil
import os
import isys
import time
import string
from translate import _
from log import log
class ImageInstallMethod(InstallMethod):
def readComps(self, hdlist):
return ComponentSet(self.tree + '/RedHat/base/comps', hdlist)
def getFilename(self, h):
return self.tree + "/RedHat/RPMS/" + h[1000000]
def readHeaders(self):
return HeaderListFromFile(self.tree + "/RedHat/base/hdlist")
def __init__(self, tree):
InstallMethod.__init__(self)
self.tree = tree
class CdromInstallMethod(ImageInstallMethod):
def systemUnmounted(self):
if self.loopbackFile:
isys.makeDevInode("loop0", "/tmp/loop")
isys.lochangefd("/tmp/loop",
"%s/RedHat/base/stage2.img" % self.tree)
self.loopbackFile = None
def systemMounted(self, fstab, mntPoint, selected):
changeloop=0
for p in selected:
if p[1000002] > 1:
changeloop=1
break
if changeloop == 0:
return
self.loopbackFile = mntPoint + fstab.filesystemSpace()[0][0] + \
"/rhinstall-stage2.img"
try:
iutil.copyFile("%s/RedHat/base/stage2.img" % self.tree,
self.loopbackFile,
(self.progressWindow, _("Copying File"),
_("Transferring install image to hard drive...")))
except:
self.messageWindow(_("Error"),
_("An error occured transferring the install image "
"to your hard drive. You are probably out of disk "
"space."))
os.unlink(self.loopbackFile)
return 1
isys.makeDevInode("loop0", "/tmp/loop")
isys.lochangefd("/tmp/loop", self.loopbackFile)
def getFilename(self, h):
if h[1000002] == None:
log ("header for %s has no disc location tag, assuming it's"
"on the current CD", h[1000000])
elif h[1000002] != self.currentDisc:
self.currentDisc = h[1000002]
isys.umount("/mnt/source")
isys.ejectCdrom(self.device)
key = ".disc%d-%s" % (self.currentDisc, iutil.getArch())
done = 0
while not done:
self.messageWindow(_("Change CDROM"),
_("Please insert disc %d to continue.") % self.currentDisc)
try:
if isys.mount(self.device, "/mnt/source",
fstype = "iso9660", readOnly = 1):
time.sleep(3)
isys.mount(self.device, "/mnt/source",
fstype = "iso9660", readOnly = 1)
if os.access("/mnt/source/%s" % key, os.O_RDONLY):
done = 1
else:
self.messageWindow(_("Wrong CDROM"),
_("That's not the correct Red Hat CDROM."))
isys.umount("/mnt/source")
isys.ejectCdrom(self.device)
except:
self.messageWindow(_("Error"),
_("The CDROM could not be mounted."))
return self.tree + "/RedHat/RPMS/" + h[1000000]
def filesDone(self):
if not self.loopbackFile: return
try:
# this isn't the exact right place, but it's close enough
os.unlink(self.loopbackFile)
except SystemError:
pass
def writeCleanupPath(self, f):
isys.makeDevInode("loop0", "/tmp/loop0")
isys.makeDevInode(self.device, "/tmp/cdrom")
f.write("umount /mnt/runtime\n")
f.write("lounsetup /tmp/loop0\n")
f.write("umount /mnt/source\n")
f.write("eject /tmp/cdrom\n")
def __init__(self, url, messageWindow, progressWindow):
(self.device, tree) = string.split(url, "/", 1)
self.messageWindow = messageWindow
self.progressWindow = progressWindow
self.currentDisc = 1
self.loopbackFile = None
ImageInstallMethod.__init__(self, "/" + tree)
class NfsInstallMethod(ImageInstallMethod):
def __init__(self, tree):
ImageInstallMethod.__init__(self, tree)
|