summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-27 18:00:59 +0000
committerMatt Wilson <msw@redhat.com>1999-09-27 18:00:59 +0000
commit9903524672dc375c5dad43e14f723dc8eb8c1d85 (patch)
tree0e470dbf060bf86d865a9cd3fa4dd0c8bb65346a /installclass.py
parent07ac270b046ee2918e6f94e7b1c8d99ce8fb287b (diff)
downloadanaconda-9903524672dc375c5dad43e14f723dc8eb8c1d85.tar.gz
anaconda-9903524672dc375c5dad43e14f723dc8eb8c1d85.tar.xz
anaconda-9903524672dc375c5dad43e14f723dc8eb8c1d85.zip
three jj patches
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py
index b750db555..22158583a 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", "mouse", "network", "authentication", "complete", "complete",
+ [ "lilo", "silo", "mouse", "network", "authentication", "complete", "complete",
"package-selection", "bootdisk", "partition", "format", "timezone",
"accounts", "dependencies", "language", "keyboard", "xconfig",
"welcome", "installtype", "mouse", "confirm-install" ].index(type)
@@ -232,6 +232,7 @@ 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")
@@ -265,6 +266,7 @@ 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")