diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-16 20:24:55 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-16 20:24:55 +0000 |
commit | 77ddf6632320bf77c38b860acc37ab69cb7c9297 (patch) | |
tree | e3dd67d67f603735d1dd0e4f0565d9ab63e5fcc0 /packages.py | |
parent | 8ce7c0429f14d948acd32674144adae7c474aec1 (diff) | |
download | anaconda-77ddf6632320bf77c38b860acc37ab69cb7c9297.tar.gz anaconda-77ddf6632320bf77c38b860acc37ab69cb7c9297.tar.xz anaconda-77ddf6632320bf77c38b860acc37ab69cb7c9297.zip |
explicitly close the db. hopefully will fix #79341
Diffstat (limited to 'packages.py')
-rw-r--r-- | packages.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages.py b/packages.py index fb2e19631..4a211bfd4 100644 --- a/packages.py +++ b/packages.py @@ -850,6 +850,7 @@ def doInstall(method, id, intf, instPath): intf.messageWindow (_("Disk Space"), probs) + ts.closeDB() del ts instLog.close() syslog.stop() @@ -861,6 +862,7 @@ def doInstall(method, id, intf, instPath): # This should close the RPM database so that you can # do RPM ops in the chroot in a %post ks script + ts.closeDB() del ts # rpm.errorSetCallback (oldError) |