summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2010-01-06 19:05:04 -0600
committerDavid Lehman <dlehman@redhat.com>2010-01-13 11:02:53 -0600
commitf9d994cb20c0ec0c88d66837bdd6733c26ef965f (patch)
tree69cbb0cef0196fac9182e07a3af3b8429ee6a38b /storage/formats/fs.py
parent9dd9693485d557030e3004cf46faff3aa7382b70 (diff)
downloadanaconda-f9d994cb20c0ec0c88d66837bdd6733c26ef965f.tar.gz
anaconda-f9d994cb20c0ec0c88d66837bdd6733c26ef965f.tar.xz
anaconda-f9d994cb20c0ec0c88d66837bdd6733c26ef965f.zip
NTFS filesystems are not really modifiable in any real sense. Admit it.
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index b07bd4ab7..614c9d334 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -1283,7 +1283,7 @@ class NTFS(FS):
_resizable = True
_minSize = 1
_maxSize = 16 * 1024 * 1024
- _defaultMountOptions = ["defaults"]
+ _defaultMountOptions = ["defaults", "ro"]
_defaultCheckOptions = ["-c"]
_packages = ["ntfsprogs"]
_infofs = "ntfsinfo"