From 69cded7e3557bbed5c983369943819b28200b297 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 9 Jan 2003 00:22:22 +0000 Subject: 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 --- installclass.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'installclass.py') 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() -- cgit