diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-09 00:22:22 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-09 00:22:22 +0000 |
commit | 69cded7e3557bbed5c983369943819b28200b297 (patch) | |
tree | ab0eb1bdba26080fe91ad5b850bf009725d531f9 /packages.py | |
parent | d7f3ece36c40eb20b4a03dbbf8595b15ba6e9af7 (diff) | |
download | anaconda-69cded7e3557bbed5c983369943819b28200b297.tar.gz anaconda-69cded7e3557bbed5c983369943819b28200b297.tar.xz anaconda-69cded7e3557bbed5c983369943819b28200b297.zip |
by default, if a package or group is listed in a ks.cfg that doesn't exist,
just pop up a dialog to see what the user wants to do about it. add
argument of --ignoremissing for %packages so they can be ignored instead
of prompting
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages.py b/packages.py index 0c7232928..14b7caac9 100644 --- a/packages.py +++ b/packages.py @@ -133,7 +133,7 @@ def readPackages(intf, method, id): continue w.pop() - id.instClass.setPackageSelection(id.hdList) + id.instClass.setPackageSelection(id.hdList, intf) while id.comps is None: try: @@ -145,10 +145,8 @@ def readPackages(intf, method, id): "due to a missing file or bad media. " "Press <return> to try again.")) continue - id.instClass.setGroupSelection(id.comps) + id.instClass.setGroupSelection(id.comps, intf) - # XXX - #updateInstClassComps () else: # re-evaluate all the expressions for packages with qualifiers. |