summaryrefslogtreecommitdiffstats
path: root/fstab.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-02-26 23:20:17 +0000
committerMike Fulbright <msf@redhat.com>2001-02-26 23:20:17 +0000
commitc32cd66be28968f160e6f574f1128275f173b4d3 (patch)
treeece0f624ee1ae154183f69c27af0cbb5dde19e8b /fstab.py
parent16ccefa5bef68cf1e51556c4450f71c8bc296a9a (diff)
downloadanaconda-c32cd66be28968f160e6f574f1128275f173b4d3.tar.gz
anaconda-c32cd66be28968f160e6f574f1128275f173b4d3.tar.xz
anaconda-c32cd66be28968f160e6f574f1128275f173b4d3.zip
remove some debugging output
Diffstat (limited to 'fstab.py')
-rw-r--r--fstab.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/fstab.py b/fstab.py
index cf5c53af1..47bd1c1f7 100644
--- a/fstab.py
+++ b/fstab.py
@@ -185,7 +185,6 @@ class Fstab:
except:
bootgeom = None
- log("Boot drive is %s, geometry is %s" % (boothd, bootgeom))
if bootgeom != None:
isys.makeDevInode(boothd, '/tmp/' + boothd)
@@ -200,8 +199,6 @@ class Fstab:
(type, sector, size) = table[i]
maxcyl = (sector+size) / string.atoi(bootgeom[2])
maxcyl = maxcyl / string.atoi(bootgeom[1])
-
- log("Boot part %s ends on cyl %s" % (bootpart, maxcyl))
os.remove ('/tmp/' + boothd)
@@ -228,7 +225,6 @@ class Fstab:
if type == 1:
continue
if dev == bootpart:
- log ("maxcyl of %s is %s" % (dev, maxcyl))
return maxcyl
return 0
@@ -599,7 +595,7 @@ class Fstab:
isys.umount(instPath + '/proc/bus/usb', removeDir = 0)
log("Umount USB OK")
except:
- log("Umount USB Fail")
+# log("Umount USB Fail")
pass
mounts = self.mountList()