summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-24 22:08:04 +0000
committerMatt Wilson <msw@redhat.com>2001-08-24 22:08:04 +0000
commitdd679c4cd2e7eb2932101a4885d65bbe0f836a71 (patch)
treea242168820a6e0ca7089316ecc8e1a8dc3d9d635 /fsset.py
parent1e16f4a1256ff1ca146f1ce46b11d3c25fec61ef (diff)
downloadanaconda-dd679c4cd2e7eb2932101a4885d65bbe0f836a71.tar.gz
anaconda-dd679c4cd2e7eb2932101a4885d65bbe0f836a71.tar.xz
anaconda-dd679c4cd2e7eb2932101a4885d65bbe0f836a71.zip
fall back to mounting with ext3 if somethign goes wrong (#49865)
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/fsset.py b/fsset.py
index 4e5cd766e..cbe7d638e 100644
--- a/fsset.py
+++ b/fsset.py
@@ -402,6 +402,9 @@ class ext3FileSystem(extFileSystem):
except OSError:
isys.mount(device, mountpoint, fstype = "ext3",
readOnly = readOnly)
+ except SystemError:
+ isys.mount(device, mountpoint, fstype = "ext3",
+ readOnly = readOnly)
def formatDevice(self, entry, progress, chroot='/'):
extFileSystem.formatDevice(self, entry, progress, chroot)