summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-28 22:18:38 +0000
committerMatt Wilson <msw@redhat.com>1999-08-28 22:18:38 +0000
commit441c38c5df0680dbdae04d4d7e1a9cc5aa5f8bd8 (patch)
tree60a3acf795b5704326d272c2fcb96a3338d5f513 /installclass.py
parent096e9b88d4c7210e472f8d48c86c2cdf55fccbb6 (diff)
downloadanaconda-441c38c5df0680dbdae04d4d7e1a9cc5aa5f8bd8.tar.gz
anaconda-441c38c5df0680dbdae04d4d7e1a9cc5aa5f8bd8.tar.xz
anaconda-441c38c5df0680dbdae04d4d7e1a9cc5aa5f8bd8.zip
fixed lilo problems
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/installclass.py b/installclass.py
index 2f99352e8..7ab264d22 100644
--- a/installclass.py
+++ b/installclass.py
@@ -16,6 +16,9 @@ class InstallClass:
self.lilo = (location, linear, appendLine)
+ def getLiloInformation(self):
+ return self.lilo
+
def addToSkipList(self, type):
# this throws an exception if there is a problem
[ "lilo", "mouse", "hostname", "network", "authentication", "complete",
@@ -53,7 +56,7 @@ class InstallClass:
def __init__(self):
self.skipSteps = {}
self.hostname = None
- self.lilo = None
+ self.lilo = ("mbr", 0, "")
self.groups = None
self.makeBootdisk = 0
self.setAuthentication(1, 1, 0)
@@ -69,10 +72,9 @@ class Workstation(InstallClass):
def __init__(self):
InstallClass.__init__(self)
- self.setLiloInformation("mbr")
self.setHostname("localhost.localdomain")
- self.setGroups(["Workstation"])
- #self.addToSkipList("lilo")
+ self.setGroups(["Base"])
+ self.addToSkipList("lilo")
self.addToSkipList("hostname")
self.addToSkipList("network")
self.addToSkipList("package-selection")