summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorjakub <jakub>1999-10-25 14:06:46 +0000
committerjakub <jakub>1999-10-25 14:06:46 +0000
commitf5c3c1017035b6525a16e44aa06b9a9a5e7b882a (patch)
treea680ed4f946ffcde916914e5756b7a16e1f471e3 /installclass.py
parent695cd3b262a4c39b5c8307dd07576cc402ae2b38 (diff)
downloadanaconda-f5c3c1017035b6525a16e44aa06b9a9a5e7b882a.tar.gz
anaconda-f5c3c1017035b6525a16e44aa06b9a9a5e7b882a.tar.xz
anaconda-f5c3c1017035b6525a16e44aa06b9a9a5e7b882a.zip
Make Lilo*/Silo* window replacement nicer, the previous one e.g. would not
catch recent changes in UpdateSteps. Add 1920x1200 resolution. Temporarily fix a collection of bugs where one gets No space on device during FTP/HTTP/Hard drive installations.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/installclass.py b/installclass.py
index 32e38267b..309ac0d07 100644
--- a/installclass.py
+++ b/installclass.py
@@ -90,7 +90,7 @@ class InstallClass:
def addToSkipList(self, type):
# this throws an exception if there is a problem
- [ "lilo", "silo", "mouse", "network", "authentication", "complete", "complete",
+ [ "lilo", "mouse", "network", "authentication", "complete", "complete",
"package-selection", "bootdisk", "partition", "format", "timezone",
"accounts", "dependencies", "language", "keyboard", "xconfig",
"welcome", "installtype", "mouse", "confirm-install" ].index(type)
@@ -233,7 +233,6 @@ class Workstation(InstallClass):
InstallClass.__init__(self)
self.setHostname("localhost.localdomain")
self.addToSkipList("lilo")
- self.addToSkipList("silo")
self.addToSkipList("authentication")
self.addToSkipList("bootdisk")
self.addToSkipList("partition")
@@ -270,7 +269,6 @@ class Server(InstallClass):
self.setGroups(["Server"])
self.setHostname("localhost.localdomain")
self.addToSkipList("lilo")
- self.addToSkipList("silo")
self.addToSkipList("package-selection")
self.addToSkipList("authentication")
self.addToSkipList("bootdisk")