diff options
author | Matt Wilson <msw@redhat.com> | 2001-08-24 22:08:04 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-08-24 22:08:04 +0000 |
commit | dd679c4cd2e7eb2932101a4885d65bbe0f836a71 (patch) | |
tree | a242168820a6e0ca7089316ecc8e1a8dc3d9d635 /fsset.py | |
parent | 1e16f4a1256ff1ca146f1ce46b11d3c25fec61ef (diff) | |
download | anaconda-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.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |