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 /installclass.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 'installclass.py')
-rw-r--r-- | installclass.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installclass.py b/installclass.py index 46a5ea08c..675b784c5 100644 --- a/installclass.py +++ b/installclass.py @@ -162,13 +162,13 @@ class BaseInstallClass: dispatch.skipStep("fdasd", permanent = 1) # This is called after the hdlist is read in. - def setPackageSelection(self, hdlist): + def setPackageSelection(self, hdlist, intf): pass # This is called after the comps is read in (after setPackageSelection()). # It can both select groups, change the default selection for groups, and # change which groups are hidden. - def setGroupSelection(self, comps): + def setGroupSelection(self, comps, intf): pass # this is a utility function designed to be called from setGroupSelection() |