summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2006-02-17 17:23:24 +0000
committerPaul Nasrat <pnasrat@redhat.com>2006-02-17 17:23:24 +0000
commitacf76fdb6c1a43e60dd7f3815f35b4a92e646fc1 (patch)
tree3bfef6955f02c7ab3ea4ccc80f57335152602e4d /backend.py
parent21706ebe648bb137f2098365a16501b96680348a (diff)
downloadanaconda-acf76fdb6c1a43e60dd7f3815f35b4a92e646fc1.tar.gz
anaconda-acf76fdb6c1a43e60dd7f3815f35b4a92e646fc1.tar.xz
anaconda-acf76fdb6c1a43e60dd7f3815f35b4a92e646fc1.zip
Complain about unknown packages and groups
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend.py b/backend.py
index afa6811a9..34672e6c1 100644
--- a/backend.py
+++ b/backend.py
@@ -160,9 +160,9 @@ def doInstall(backend, intf, id, instPath):
backend.doInstall(intf, id, instPath)
# does this need to be per-backend? we'll just leave here until it does :)
-def doBasePackageSelect(backend, instClass):
- instClass.setPackageSelection(backend)
- instClass.setGroupSelection(backend)
+def doBasePackageSelect(backend, instClass, intf):
+ instClass.setPackageSelection(backend, intf)
+ instClass.setGroupSelection(backend, intf)
def writeConfiguration(backend, id, instPath):
log.info("Writing main configuration")