summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-04 14:20:07 -0500
committerChris Lumens <clumens@redhat.com>2009-03-04 15:33:27 -0500
commitf780409e2eb333365b38736037cf8958c0e7c430 (patch)
tree0e83908cc105e2f59a48666292966ee580b3cd15 /packages.py
parenta646faa1cba2ada37d9d17b6f7785c469f64cbec (diff)
downloadanaconda-f780409e2eb333365b38736037cf8958c0e7c430.tar.gz
anaconda-f780409e2eb333365b38736037cf8958c0e7c430.tar.xz
anaconda-f780409e2eb333365b38736037cf8958c0e7c430.zip
Fix copying the storage.log file over to the installed system.
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index 9d763896f..1de32a7a9 100644
--- a/packages.py
+++ b/packages.py
@@ -79,7 +79,8 @@ def copyAnacondaLogs(anaconda):
log.info("Copying anaconda logs")
for (fn, dest) in (("/tmp/anaconda.log", "anaconda.log"),
("/tmp/syslog", "anaconda.syslog"),
- ("/tmp/X.log", "anaconda.xlog", "/tmp/storage.log")):
+ ("/tmp/X.log", "anaconda.xlog"),
+ ("/tmp/storage.log", "storage.log")):
if os.access(fn, os.R_OK):
try:
shutil.copyfile(fn, "%s/var/log/%s" %(anaconda.rootPath, dest))