summaryrefslogtreecommitdiffstats
path: root/storage/formats/fs.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-05-14 10:11:27 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-05-14 13:22:17 -1000
commitd97019a25b943133d5eb55bd3357c0d869910e8c (patch)
treefa5036a6f1f1903b167c06244b751737cea3f920 /storage/formats/fs.py
parentd0616c9b73eb0e1fb2a9593475b9e70592733145 (diff)
downloadanaconda-d97019a25b943133d5eb55bd3357c0d869910e8c.tar.gz
anaconda-d97019a25b943133d5eb55bd3357c0d869910e8c.tar.xz
anaconda-d97019a25b943133d5eb55bd3357c0d869910e8c.zip
Get existing fs size for ntfs.
Diffstat (limited to 'storage/formats/fs.py')
-rw-r--r--storage/formats/fs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/storage/formats/fs.py b/storage/formats/fs.py
index 4f838d611..95011e6d3 100644
--- a/storage/formats/fs.py
+++ b/storage/formats/fs.py
@@ -1148,6 +1148,9 @@ class NTFS(FS):
_defaultMountOptions = ["defaults"]
_defaultCheckOptions = ["-c"]
_packages = ["ntfsprogs"]
+ _infofs = "ntfsinfo"
+ _defaultInfoOptions = ["-m"]
+ _existingSizeFields = ["Cluster Size:", "Volume Size in Clusters:"]
@property
def minSize(self):