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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
|
# For an install to proceed, the following todo fields must be filled in
#
# mount list (unless todo.runLive) addMount()
# lilo boot.b installation (may be None) liloLocation()
import rpm, os
import util, isys
from lilo import LiloConfiguration
from syslog import Syslog
import string
import socket
import crypt
import whrandom
class LogFile:
def __init__ (self):
self.logFile = open("/dev/tty3", "w")
def __call__ (self, format, *args):
if args:
self.logFile.write (format % args)
else:
self.logFile.write (format)
class SimpleConfigFile:
def __str__ (self):
s = ""
keys = self.info.keys ()
keys.sort ()
for key in keys:
# FIXME - use proper escaping
s = s + key + "=\"" + self.info[key] + "\"\n"
return s
def __init__ (self):
self.info = {}
def set (self, *args):
for (key, data) in args:
self.info[string.upper (key)] = data
def unset (self, *keys):
for key in keys:
key = string.upper (key)
if self.info.has_key (key):
del self.info[key]
def get (self, key):
key = string.upper (key)
if self.info.has_key (key):
return self.info[key]
else:
return ""
class NetworkDevice (SimpleConfigFile):
def __str__ (self):
s = ""
s = s + "DEVICE=" + self.info["DEVICE"] + "\n"
keys = self.info.keys ()
keys.sort ()
keys.remove ("DEVICE")
for key in keys:
s = s + key + "=" + self.info[key] + "\n"
return s
def __init__ (self, dev):
self.info = { "DEVICE" : dev }
self.hostname = ""
class Network:
def __init__ (self):
self.netdevices = {}
self.gateway = ""
self.primaryNS = ""
self.secondaryNS = ""
self.ternaryNS = ""
self.domains = []
try:
f = open ("/tmp/netinfo", "r")
except:
pass
else:
lines = f.readlines ()
info = {}
for line in lines:
netinf = string.splitfields (line, '=')
info [netinf[0]] = string.strip (netinf[1])
self.netdevices [info["DEVICE"]] = NetworkDevice (info["DEVICE"])
if info.has_key ("IPADDR"):
self.netdevices [info["DEVICE"]].set (("IPADDR", info["IPADDR"]))
if info.has_key ("NETMASK"):
self.netdevices [info["DEVICE"]].set (("NETMASK", info["NETMASK"]))
if info.has_key ("BOOTPROTO"):
self.netdevices [info["DEVICE"]].set (("BOOTPROTO", info["BOOTPROTO"]))
if info.has_key ("GATEWAY"):
self.gateway = info["GATEWAY"]
if info.has_key ("NS1"):
self.primaryNS = info["NS1"]
def available (self):
if self.netdevices:
return self.netdevices
f = open ("/proc/net/dev")
lines = f.readlines()
f.close ()
# skip first two lines, they are header
lines = lines[2:]
for line in lines:
dev = string.strip (line[0:6])
if dev != "lo" and not self.netdevices.has_key (dev):
self.netdevices[dev] = NetworkDevice (dev)
return self.netdevices
def guessHostnames (self):
# guess the hostname for the first device with an IP
# XXX fixme - need to set up resolv.conf
self.domains = []
for dev in self.netdevices.values ():
ip = dev.get ("ipaddr")
if ip:
try:
(hostname, aliases, ipaddrs) = socket.gethostbyaddr (ip)
except socket.error:
hostname = ""
if hostname:
dev.hostname = hostname
if '.' in hostname:
# chop off everything before the leading '.'
self.domains.append (hostname[(string.find (hostname, '.') + 1):])
else:
dev.hostname = "localhost.localdomain"
if not self.domains:
self.domains = [ "localdomain" ]
def nameservers (self):
return [ self.primaryNS, self.secondaryNS, self.ternaryNS ]
class Password:
def __init__ (self):
self.crypt = ""
def set (self, password, isCrypted = 0):
if not isCrypted:
salt = (whrandom.choice (string.letters +
string.digits + './') +
whrandom.choice (string.letters +
string.digits + './'))
self.crypt = crypt.crypt (password, salt)
else:
self.crypt = password
def get (self):
return self.crypt
class Language (SimpleConfigFile):
def __init__ (self):
self.info = {}
self.lang = None
self.langs = {
"English" : "C",
"German" : "de",
}
def available (self):
return self.langs
def set (self, lang):
self.lang = self.langs[lang]
self.info["LANG"] = self.langs[lang]
self.info["LINGUAS"] = self.langs[lang]
self.info["LC_ALL"] = self.langs[lang]
def get (self):
if self.lang:
return self.lang
else:
return "C"
class Mouse (SimpleConfigFile):
# XXX fixme - externalize
def __init__ (self):
self.info = {}
self.mice = {
"ALPS - GlidePoint (PS/2)" :
("ps/2", "GlidePointPS/2", "psaux"),
"ASCII - MieMouse (serial)" :
("ms3", "IntelliMouse", "ttyS"),
"ASCII - MieMouse (PS/2)" :
("ps/2", "NetMousePS/2", "psaux"),
"ATI - Bus Mouse" :
("Busmouse", "BusMouse", "atibm"),
"Generic - 2 Button Mouse (serial)" :
("Microsoft", "Microsoft", "ttyS"),
"Generic - 3 Button Mouse (serial)" :
("Microsoft", "Microsoft", "ttyS"),
"Generic - 2 Button Mouse (PS/2)" :
("ps/2", "PS/2", "psaux"),
"Generic - 3 Button Mouse (PS/2)" :
("ps/2", "PS/2", "psaux"),
"Genius - NetMouse (serial)" :
("ms3", "IntelliMouse", "ttyS"),
"Genius - NetMouse (PS/2)" :
("netmouse", "NetMousePS/2", "psaux"),
"Genius - NetMouse Pro (PS/2)" :
("netmouse", "NetMousePS/2", "psaux"),
"Genius - NetScroll (PS/2)" :
("netmouse", "NetScrollPS/2", "psaux"),
"Kensington - Thinking Mouse (PS/2)" :
("ps/2", "ThinkingMousePS/2", "psaux"),
"Logitech - C7 Mouse (serial, old C7 type)" :
("Logitech", "Logitech", "ttyS"),
"Logitech - CC Series (serial)" :
("logim", "MouseMan", "ttyS"),
"Logitech - Bus Mouse" :
("Busmouse", "BusMouse", "logibm"),
"Logitech - MouseMan/FirstMouse (serial)" :
("MouseMan", "MouseMan", "ttyS"),
"Logitech - MouseMan/FirstMouse (ps/2)" :
("ps/2", "PS/2", "psaux"),
"Logitech - MouseMan+/FirstMouse+ (serial)" :
("pnp", "IntelliMouse", "ttyS"),
"Logitech - MouseMan+/FirstMouse+ (PS/2)" :
("ps/2", "MouseManPlusPS/2", "psaux"),
"Microsoft - Compatible Mouse (serial)" :
("Microsoft", "Microsoft", "ttyS"),
"Microsoft - Rev 2.1A or higher (serial)" :
("pnp", "Auto", "ttyS"),
"Microsoft - IntelliMouse (serial)" :
("ms3", "IntelliMouse", "ttyS"),
"Microsoft - IntelliMouse (PS/2)" :
("imps2", "IMPS/2", "psaux"),
"Microsoft - Bus Mouse" :
("Busmouse", "BusMouse", "inportbm"),
"Mouse Systems - Mouse (serial)" :
("MouseSystems", "MouseSystems", "ttyS"),
"MM - Series (serial)" :
("MMSeries", "MMSeries", "ttyS"),
"MM - HitTablet (serial)" :
("MMHitTab", "MMHittab", "ttyS"),
}
def available (self):
return self.mice
def get (self):
if self.info.has_key ("FULLNAME"):
return self.info ["FULLNAME"]
else:
return "Generic - 3 Button Mouse (PS/2)"
def set (self, mouse):
(gpm, x11, dev) = self.mice[mouse]
self.info["MOUSETYPE"] = gpm
self.info["XMOUSETYPE"] = x11
self.info["FULLNAME"] = mouse
class Keyboard (SimpleConfigFile):
# XXX fixme - externalize
def __init__ (self):
self.info = {}
def available (self):
return [
"azerty",
"be-latin1",
"be2-latin1",
"fr-latin0",
"fr-latin1",
"fr-pc",
"fr",
"wangbe",
"ANSI-dvorak",
"dvorak-l",
"dvorak-r",
"dvorak",
"pc-dvorak-latin1",
"tr_f-latin5",
"trf",
"bg",
"cf",
"cz-lat2-prog",
"cz-lat2",
"defkeymap",
"defkeymap_V1.0",
"dk-latin1",
"dk",
"emacs",
"emacs2",
"es",
"fi-latin1",
"fi",
"gr-pc",
"gr",
"hebrew",
"hu101",
"is-latin1",
"it-ibm",
"it",
"it2",
"jp106",
"la-latin1",
"lt",
"lt.l4",
"nl",
"no-latin1",
"no",
"pc110",
"pl",
"pt-latin1",
"pt-old",
"ro",
"ru-cp1251",
"ru-ms",
"ru-yawerty",
"ru",
"ru1",
"ru2",
"ru_win",
"se-latin1",
"sk-prog-qwerty",
"sk-prog",
"sk-qwerty",
"tr_q-latin5",
"tralt",
"trf",
"trq",
"ua",
"uk",
"us",
"croat",
"cz-us-qwertz",
"de-latin1-nodeadkeys",
"de-latin1",
"de",
"fr_CH-latin1",
"fr_CH",
"hu",
"sg-latin1-lk450",
"sg-latin1",
"sg",
"sk-prog-qwertz",
"sk-qwertz",
"slovene",
]
def set (self, keytable):
self.info["KEYTABLE"] = keytable
def get (self):
if self.info.has_key ("KEYTABLE"):
return self.info["KEYTABLE"]
else:
return "us"
class Authentication:
def __init__ (self):
self.useShadow = 1
self.useMD5 = 1
self.useNIS = 0
self.domain = ""
self.useBroadcast = 1
self.server = ""
class Drives:
def available (self):
return isys.hardDriveList ()
rpmFD = None
class ToDo:
def __init__(self, intf, method, rootPath, setupFilesystems = 1,
installSystem = 1):
self.intf = intf
self.method = method
self.mounts = {}
self.hdList = None
self.comps = None
self.instPath = rootPath
self.setupFilesystems = setupFilesystems
self.installSystem = installSystem
self.language = Language ()
self.network = Network ()
self.rootpassword = Password ()
self.mouse = Mouse ()
self.keyboard = Keyboard ()
self.auth = Authentication ()
self.ddruid = None;
self.drives = Drives ()
self.log = LogFile ()
self.bootdisk = 0
def umountFilesystems(self):
if (not self.setupFilesystems): return
mounts = self.mounts.keys ()
keys.sort()
keys.reverse()
for n in keys:
(device, filesystem, format) = self.mounts[n]
isys.makeDevInode(n, '/tmp/' + device)
isys.umount(n)
os.remove('/tmp/' + device)
def mountFilesystems(self):
if (not self.setupFilesystems): return
keys = self.mounts.keys ()
keys.sort()
for mntpoint in keys:
(device, filesystem, format) = self.mounts[mntpoint]
isys.makeDevInode(device, '/tmp/' + device)
try:
os.mkdir (self.instPath + mntpoint)
except:
pass
isys.mount( '/tmp/' + device, self.instPath + mntpoint)
os.remove( '/tmp/' + device);
def makeFilesystems(self):
if (not self.setupFilesystems): return
keys = self.mounts.keys ()
keys.sort()
for mntpoint in keys:
(device, fsystem, format) = self.mounts[mntpoint]
if not format: continue
w = self.intf.waitWindow("Formatting",
"Formatting %s filesystem..." % (mntpoint,))
isys.makeDevInode(device, '/tmp/' + device)
if fsystem == "ext2":
util.execWithRedirect("/usr/sbin/mke2fs",
[ "mke2fs", '/tmp/' + device ],
stdout = None, stderr = None,
searchPath = 1)
elif fsystem == "swap":
util.execWithRedirect("/usr/sbin/mkswap",
[ "mkswap", '/tmp/' + device ],
stdout = None, stderr = None,
searchPath = 1)
else:
pass
os.remove('/tmp/' + device)
w.pop()
def addMount(self, device, location, fsystem, reformat = 0):
if fsystem == "swap":
location = "swap"
self.mounts[location] = (device, fsystem, reformat)
def writeFstab(self):
format = "%-23s %-23s %-7s %-15s %d %d\n";
f = open (self.instPath + "/etc/fstab", "w")
keys = self.mounts.keys ()
keys.sort ()
for mntpoint in keys:
(dev, fs, reformat) = self.mounts[mntpoint]
if (mntpoint == '/'):
f.write (format % ( '/dev/' + dev, mntpoint, fs, 'defaults', 1, 1))
else:
if (fs == "ext2"):
f.write (format % ( '/dev/' + dev, mntpoint, fs, 'defaults', 1, 2))
else:
f.write (format % ( '/dev/' + dev, mntpoint, fs, 'defaults', 0, 0))
f.write (format % ("/mnt/floppy", "/dev/fd0", 'ext', 'noauto', 0, 0))
f.write (format % ("none", "/proc", 'proc', 'defaults', 0, 0))
f.write (format % ("none", "/dev/pts", 'devpts', 'gid=5,mode=620', 0, 0))
f.close ()
# touch mtab
open (self.instPath + "/etc/mtab", "w+")
f.close ()
def writeLanguage(self):
f = open(self.instPath + "/etc/sysconfig/i18n", "w")
f.write(str (self.language))
f.close()
def writeMouse(self):
f = open(self.instPath + "/etc/sysconfig/mouse", "w")
f.write(str (self.mouse))
f.close()
def writeKeyboard(self):
f = open(self.instPath + "/etc/sysconfig/keyboard", "w")
f.write(str (self.keyboard))
f.close()
def makeInitrd (self):
if not self.__dict__.has_key ("madeinitrd"):
initrd = "/boot/initrd-%s.img" % (self.kernelVersion,)
util.execWithRedirect("/sbin/mkinitrd",
[ "/sbin/mkinitrd",
initrd,
self.kernelVersion ],
stdout = None, stderr = None, searchPath = 1,
root = self.instPath)
self.madeinitrd = 1
def makeBootdisk (self):
self.makeInitrd ()
w = self.intf.waitWindow ("Creating", "Creating boot disk")
util.execWithRedirect("/sbin/mkbootdisk",
[ "/sbin/mkbootdisk",
"--noprompt",
"--device",
"/dev/fd0",
self.kernelVersion ],
stdout = None, stderr = None, searchPath = 1,
root = self.instPath)
w.pop()
def installLilo (self):
if not self.liloDevice: return
kernelVersion = "%s-%s" % (self.kernelPackage[rpm.RPMTAG_VERSION],
self.kernelPackage[rpm.RPMTAG_RELEASE])
initrd = "/boot/initrd-%s.img" % (kernelVersion,)
self.makeInitrd ()
l = LiloConfiguration()
l.addEntry("boot", '/dev/' + self.liloDevice)
l.addEntry("map", "/boot/map")
l.addEntry("install", "/boot/boot.b")
l.addEntry("prompt")
l.addEntry("timeout", "50")
sl = LiloConfiguration()
sl.addEntry("label", "linux")
if os.access (self.instPath + initrd, os.R_OK):
sl.addEntry("initrd", initrd)
if not self.mounts.has_key ('/'):
return
(dev, type, size) = self.mounts['/']
sl.addEntry("root", '/dev/' + dev)
sl.addEntry("read-only")
kernelFile = "/boot/vmlinuz-" + kernelVersion
l.addImage(kernelFile, sl)
l.write(self.instPath + "/etc/lilo.conf")
util.execWithRedirect(self.instPath + '/sbin/lilo' , [ "lilo",
"-r", self.instPath ], stdout = None)
def freeHeaderList(self):
if (self.hdList):
self.hdList = None
def getHeaderList(self):
if (not self.hdList):
w = self.intf.waitWindow("Reading",
"Reading package information...")
self.hdList = self.method.readHeaders()
w.pop()
return self.hdList
def setLiloLocation(self, device):
self.liloDevice = device
def getCompsList(self):
if (not self.comps):
self.getHeaderList()
self.comps = self.method.readComps(self.hdList)
self.comps['Base'].select(1)
self.kernelPackage = self.hdList['kernel']
if (self.hdList.has_key('kernel-smp') and isys.smpAvailable()):
self.hdList['kernel-smp'].selected = 1
self.kernelPackage = self.hdList['kernel-smp']
self.kernelVersion = "%s-%s" % (self.kernelPackage[rpm.RPMTAG_VERSION],
self.kernelPackage[rpm.RPMTAG_RELEASE])
return self.comps
def writeNetworkConfig (self):
# /etc/sysconfig/network-scripts/ifcfg-*
for dev in self.network.netdevices.values ():
device = dev.get ("device")
f = open (self.instPath + "/etc/sysconfig/network-scripts/ifcfg-" + device, "w")
f.write (str (dev))
f.close ()
# /etc/sysconfig/network
f = open (self.instPath + "/etc/sysconfig/network", "w")
f.write ("NETWORKING=yes\n"
"FORWARD_IPV4=false\n"
"HOSTNAME=localhost.localdomain\n"
"GATEWAY=" + self.network.gateway + "\n")
f.close ()
# /etc/hosts
f = open (self.instPath + "/etc/hosts", "w")
f.write ("127.0.0.1\t\tlocalhost.localdomain\n")
for dev in self.network.netdevices.values ():
ip = dev.get ("ipaddr")
if dev.hostname and ip:
f.write ("%s\t\t%s\n" % (ip, dev.hostname))
f.close ()
# /etc/resolv.conf
f = open (self.instPath + "/etc/resolv.conf", "w")
f.write ("search " + string.joinfields (self.network.domains, ' ') + "\n")
for ns in self.network.nameservers ():
if ns:
f.write ("nameserver " + ns + "\n")
f.close ()
def writeRootPassword (self):
f = open (self.instPath + "/etc/passwd", "r")
lines = f.readlines ()
f.close ()
index = 0
for line in lines:
if line[0:4] == "root":
entry = string.splitfields (line, ':')
entry[1] = self.rootpassword.get ()
lines[index] = string.joinfields (entry, ':')
break
index = index + 1
f = open (self.instPath + "/etc/passwd", "w")
f.writelines (lines)
f.close ()
def setupAuthentication (self):
args = [ "/usr/sbin/authconfig", "--kickstart", "--nostart" ]
if self.auth.useShadow:
args.append ("--useshadow")
if self.auth.useMD5:
args.append ("--enablemd5")
if self.auth.useNIS:
args.append ("--enablenis")
args.append ("--nisdomain")
args.append (self.auth.domain)
if not self.auth.useBroadcast:
args.append ("--nisserver")
args.append (self.auth.server)
util.execWithRedirect(args[0], args,
stdout = None, stderr = None, searchPath = 1,
root = self.instPath)
def copyConfModules (self):
try:
inf = open ("/tmp/conf.modules", "r")
except:
pass
else:
out = open (self.instPath + "/etc/conf.modules", "w")
out.write (inf.read ())
def doInstall(self, intf):
# make sure we have the header list and comps file
self.getHeaderList()
self.getCompsList()
# make sure that all comps that include other comps are
# selected (i.e. - recurse down the selected comps and turn
# on the children
for comp in self.comps:
if comp.selected:
comp.select(1)
if self.setupFilesystems:
self.ddruid.save ()
self.makeFilesystems ()
self.mountFilesystems ()
if not self.installSystem:
return
for i in [ '/var', '/var/lib', '/var/lib/rpm', '/tmp', '/dev' ]:
try:
os.mkdir(self.instPath + i)
except os.error, (errno, msg):
intf.messageWindow("Error", "Error making directory %s: %s" % (i, msg))
db = rpm.opendb(1, self.instPath)
ts = rpm.TransactionSet(self.instPath, db)
total = 0
totalSize = 0
for p in self.hdList.selected():
ts.add(p.h, (p.h, self.method))
total = total + 1
totalSize = totalSize + p.h[rpm.RPMTAG_SIZE]
ts.order()
instLog = open(self.instPath + '/tmp/install.log', "w+")
syslog = Syslog(root = self.instPath, output = instLog)
instLogFd = os.open(self.instPath + '/tmp/install.log', os.O_RDWR)
ts.scriptFd = instLogFd
# the transaction set dup()s the file descriptor and will close the
# dup'd when we go out of scope
os.close(instLogFd)
p = self.intf.packageProgressWindow(total, totalSize)
def instCallback(what, amount, total, key, intf):
if (what == rpm.RPMCALLBACK_INST_OPEN_FILE):
(h, method) = key
intf.setPackage(h)
intf.setPackageScale(0, 1)
fn = method.getFilename(h)
global rpmFD
rpmFD = os.open(fn, os.O_RDONLY)
return rpmFD
elif (what == rpm.RPMCALLBACK_INST_PROGRESS):
intf.setPackageScale(amount, total)
elif (what == rpm.RPMCALLBACK_INST_CLOSE_FILE):
global rpmFD
os.close (rpmFD)
(h, method) = key
intf.completePackage(h)
else:
pass
# XXX FIXME FIXME: -1 IGNORES all problems
ts.run(0, -1, instCallback, p)
del syslog
del p
w = self.intf.waitWindow("Post Install",
"Performing post install configuration")
self.writeFstab ()
self.writeLanguage ()
self.writeMouse ()
self.writeKeyboard ()
self.writeNetworkConfig ()
self.writeRootPassword ()
self.setupAuthentication ()
self.copyConfModules ()
self.makeBootdisk ()
self.installLilo ()
w.pop ()
|