1 |
slords |
1.2 |
From 7001888c727df168e8443e92dc1351dd44996077 Mon Sep 17 00:00:00 2001 |
2 |
slords |
1.1 |
From: Shad L. Lords <slords@mail.com> |
3 |
|
|
Date: Mon, 19 Oct 2009 07:53:36 -0600 |
4 |
|
|
Subject: [PATCH] No warnings if unable to remove rpm databases |
5 |
|
|
|
6 |
|
|
--- |
7 |
|
|
yuminstall.py | 2 +- |
8 |
|
|
1 files changed, 1 insertions(+), 1 deletions(-) |
9 |
|
|
|
10 |
|
|
diff --git a/yuminstall.py b/yuminstall.py |
11 |
slords |
1.2 |
index b9d0415..c526587 100644 |
12 |
slords |
1.1 |
--- a/yuminstall.py |
13 |
|
|
+++ b/yuminstall.py |
14 |
slords |
1.2 |
@@ -1677,7 +1677,7 @@ class YumBackend(AnacondaBackend): |
15 |
slords |
1.1 |
try: |
16 |
|
|
os.unlink("%s/var/lib/rpm/%s" %(anaconda.rootPath, rpmfile)) |
17 |
|
|
except: |
18 |
|
|
- log.info("error %s removing file: /var/lib/rpm/%s" %(e,rpmfile)) |
19 |
|
|
+ #log.info("error %s removing file: /var/lib/rpm/%s" %(e,rpmfile)) |
20 |
|
|
pass |
21 |
|
|
sys.exit(0) |
22 |
|
|
|
23 |
|
|
-- |
24 |
|
|
1.5.5.6 |
25 |
|
|
|