diff options
author | Mike Fulbright <msf@redhat.com> | 2000-07-25 03:18:13 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-07-25 03:18:13 +0000 |
commit | 807591fc0e47bda2625dfc247569c67b5c9665c1 (patch) | |
tree | c3ad0e0f5be868c7ee8338a34be3e58c5e419cc0 /fstab.py | |
parent | ef0749088e74402b6348f1f8392a8cfc6ce5433e (diff) | |
download | anaconda-807591fc0e47bda2625dfc247569c67b5c9665c1.tar.gz anaconda-807591fc0e47bda2625dfc247569c67b5c9665c1.tar.xz anaconda-807591fc0e47bda2625dfc247569c67b5c9665c1.zip |
umount usb when done
Diffstat (limited to 'fstab.py')
-rw-r--r-- | fstab.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -455,6 +455,13 @@ class Fstab: isys.umount(instPath + '/proc', removeDir = 0) + try: + isys.umount(instPath + '/proc/bus/usb', removeDir = 0) + log("Umount USB OK") + except: + log("Umount USB Fail") + pass + mounts = self.mountList() mounts.reverse() for (n, device, fsystem, doFormat, size) in mounts: |