diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-02-06 18:54:19 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-02-06 18:54:19 +0000 |
commit | 0a1b2db7a936a08e5510527a463296dbc94b363a (patch) | |
tree | bd7911d5358f5e2cd657e116b9f0b5f8f9c35da3 | |
parent | b724b0cdc3735f2581e8b39578f23163259e2c54 (diff) | |
download | anaconda-0a1b2db7a936a08e5510527a463296dbc94b363a.tar.gz anaconda-0a1b2db7a936a08e5510527a463296dbc94b363a.tar.xz anaconda-0a1b2db7a936a08e5510527a463296dbc94b363a.zip |
2006-02-06 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (AnacondaYum.isGroupInstalled): Add method that
pirut depends on now
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | yuminstall.py | 6 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2006-02-06 Jeremy Katz <katzj@redhat.com> + * yuminstall.py (AnacondaYum.isGroupInstalled): Add method that + pirut depends on now + * scripts/upd-instroot (KEEPFILE): More sqlite (#171232) 2006-02-03 Jeremy Katz <katzj@redhat.com> diff --git a/yuminstall.py b/yuminstall.py index 07c99dabc..97a608ae5 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -533,6 +533,12 @@ class AnacondaYum(YumSorter): return True return False + def simpleDBInstalled(self, name): + # FIXME: this is used in pirut because of slow stuff in yum + # given that we're on a new system, nothing is ever installed in the + # rpmdb + return False + def downloadHeader(self, po): tries = 0 while tries < 5: |