summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-07-30 15:04:27 -0400
committerChris Lumens <clumens@redhat.com>2009-07-30 15:05:16 -0400
commit4d05d69739c1a80c3dcd9a4ffcf387215d97f4b1 (patch)
treecb9c05cec77f0b3541d36bb48f4537b9fb0ee164
parenta2b1892f170857cfa28db220c64f99b7449d95a1 (diff)
downloadanaconda-4d05d69739c1a80c3dcd9a4ffcf387215d97f4b1.tar.gz
anaconda-4d05d69739c1a80c3dcd9a4ffcf387215d97f4b1.tar.xz
anaconda-4d05d69739c1a80c3dcd9a4ffcf387215d97f4b1.zip
Log when we unmount filesystems so we have a match for mount messages.
-rwxr-xr-xisys/isys.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 78ca9d2be..f1003b59b 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -190,6 +190,7 @@ def umount(what, removeDir = True):
mountCount[what] = mountCount[what] - 1
return
+ log.debug("isys.py:umount()- going to unmount %s, removeDir = %s" % (what, removeDir))
rc = _isys.umount(what)
if removeDir and os.path.isdir(what):