summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-06-06 16:33:31 +0000
committerJeremy Katz <katzj@redhat.com>2003-06-06 16:33:31 +0000
commite0779b7bf137a60bf6e6cd3adee4aabffcd28c73 (patch)
tree20b8340a621390a3fc967ef5fb3723c78b4033c7 /kickstart.py
parent91d5fc40d23a5fb5b225287090e8074d0054fa6e (diff)
downloadanaconda-e0779b7bf137a60bf6e6cd3adee4aabffcd28c73.tar.gz
anaconda-e0779b7bf137a60bf6e6cd3adee4aabffcd28c73.tar.xz
anaconda-e0779b7bf137a60bf6e6cd3adee4aabffcd28c73.zip
merge taroon branch. mostly package bits, but a lot of other misc stuff
and cleanups in here too
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kickstart.py b/kickstart.py
index 0c7b09a12..5aad8600f 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1202,7 +1202,7 @@ class KickstartBase(BaseInstallClass):
for script in self.tracebackScripts:
script.run("/", self.serial)
- # Note that this assumes setGroupSelection() is called after
+ # Note that this assumes setGroupSelection() is called before
# setPackageSelection()
def setPackageSelection(self, hdlist, intf):
for n in self.packageList:
@@ -1228,7 +1228,7 @@ class KickstartBase(BaseInstallClass):
def setGroupSelection(self, grpset, intf):
grpset.unselectAll()
-
+
grpset.selectGroup("base")
for n in self.groupList:
try:
@@ -1251,7 +1251,7 @@ class KickstartBase(BaseInstallClass):
sys.exit(1)
else:
pass
-
+
for n in self.excludedList:
if grpset.hdrlist.has_key(n):
grpset.hdrlist[n].unselect(isManual = 1)