diff options
author | Erik Troan <ewt@redhat.com> | 1999-08-28 23:05:23 +0000 |
---|---|---|
committer | Erik Troan <ewt@redhat.com> | 1999-08-28 23:05:23 +0000 |
commit | 5c8d8e8348cc0232cc1b5f8fc58dfffd6aa71a2c (patch) | |
tree | 3db52577320e94580f3e69521ee63801d3b2d765 /installclass.py | |
parent | b2bbe1e6683982a4dce4908b6a705a36f733f4ce (diff) | |
download | anaconda-5c8d8e8348cc0232cc1b5f8fc58dfffd6aa71a2c.tar.gz anaconda-5c8d8e8348cc0232cc1b5f8fc58dfffd6aa71a2c.tar.xz anaconda-5c8d8e8348cc0232cc1b5f8fc58dfffd6aa71a2c.zip |
got rid of separate hostname tag
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/installclass.py b/installclass.py index 7ab264d22..914fdeaaf 100644 --- a/installclass.py +++ b/installclass.py @@ -21,7 +21,7 @@ class InstallClass: def addToSkipList(self, type): # this throws an exception if there is a problem - [ "lilo", "mouse", "hostname", "network", "authentication", "complete", + [ "lilo", "mouse", "network", "authentication", "complete", "package-selection", "bootdisk", "install-pause" ].index(type) self.skipSteps[type] = 1 @@ -75,7 +75,6 @@ class Workstation(InstallClass): self.setHostname("localhost.localdomain") self.setGroups(["Base"]) self.addToSkipList("lilo") - self.addToSkipList("hostname") self.addToSkipList("network") self.addToSkipList("package-selection") self.addToSkipList("authentication") |