diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-08 22:48:51 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-08 22:48:51 +0000 |
commit | b734c3c4cbe2d2eed231ece0d5a0610257b570a3 (patch) | |
tree | ab9497ff19c175758fdd0ca794609f528d79dfc2 /kickstart.py | |
parent | c0382196e18520c484de7c71b169818e5d3d1739 (diff) | |
download | anaconda-b734c3c4cbe2d2eed231ece0d5a0610257b570a3.tar.gz anaconda-b734c3c4cbe2d2eed231ece0d5a0610257b570a3.tar.xz anaconda-b734c3c4cbe2d2eed231ece0d5a0610257b570a3.zip |
if no %packages, then prompt for package selection (hp feature request, #80977,
it13108)
Diffstat (limited to 'kickstart.py')
-rw-r--r-- | kickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kickstart.py b/kickstart.py index fdef7f65f..f4ff5fa08 100644 --- a/kickstart.py +++ b/kickstart.py @@ -629,6 +629,7 @@ class KickstartBase(BaseInstallClass): id.handleDeps = IGNORE_DEPS where = "packages" + self.skipSteps.append("package-selection") else: # if we're parsing the %pre and not in the pre, continue if parsePre and where != "pre": @@ -1081,7 +1082,6 @@ class KickstartBase(BaseInstallClass): dispatch.skipStep("bootdisk") dispatch.skipStep("welcome") dispatch.skipStep("betanag") - dispatch.skipStep("package-selection") dispatch.skipStep("confirminstall") dispatch.skipStep("confirmupgrade") dispatch.skipStep("network") |