summaryrefslogtreecommitdiffstats
path: root/backend.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-08-29 18:58:04 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-08-29 18:58:04 +0000
commit04adfc73c1b719b46322b199b9e451d032afe3ad (patch)
tree59fd4a1ed83f36134d9d5d38a02c4190fd9865e1 /backend.py
parentf2a075ae5a5ed612342a7433257f65e2828774ed (diff)
downloadanaconda-04adfc73c1b719b46322b199b9e451d032afe3ad.tar.gz
anaconda-04adfc73c1b719b46322b199b9e451d032afe3ad.tar.xz
anaconda-04adfc73c1b719b46322b199b9e451d032afe3ad.zip
start to wire backend object in
Diffstat (limited to 'backend.py')
-rw-r--r--backend.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/backend.py b/backend.py
index 9a2049a81..49bbf6690 100644
--- a/backend.py
+++ b/backend.py
@@ -16,8 +16,13 @@ import logging
log = logging.getLogger("anaconda")
class AnacondaBackend:
- def __init__(self):
- pass
+ def __init__(self, method):
+ self.method = method
+
+ def readPackages(self, intf, id):
+ """Set id.grpset and id.pkglist"""
+ id.grpset = []
+ id.pkglist = []
def doPreSelection(self):
pass