summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-11-21 00:01:23 +0000
committerMatt Wilson <msw@redhat.com>2002-11-21 00:01:23 +0000
commit6243d31f7e9f404c7bacb94eb18ffd0b442a47c2 (patch)
treeba3dcc2dfa09181c3bc03fd2a38c29983d3561e2 /fsset.py
parent23c19aed33157875a3f828ae0e9ef31aae48fddc (diff)
downloadanaconda-6243d31f7e9f404c7bacb94eb18ffd0b442a47c2.tar.gz
anaconda-6243d31f7e9f404c7bacb94eb18ffd0b442a47c2.tar.xz
anaconda-6243d31f7e9f404c7bacb94eb18ffd0b442a47c2.zip
probable fix for #78111 - awaiting confirmation
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/fsset.py b/fsset.py
index b5cfe6749..1192a99f8 100644
--- a/fsset.py
+++ b/fsset.py
@@ -693,6 +693,16 @@ class FATFileSystem(FileSystemType):
fileSystemTypeRegister(FATFileSystem())
+class NTFSFileSystem(FileSystemType):
+ def __init__(self):
+ FileSystemType.__init__(self)
+ self.partedFileSystemType = parted.file_system_type_get("ntfs")
+ self.formattable = 0
+ self.checked = 0
+ self.name = "ntfs"
+
+fileSystemTypeRegister(FATFileSystem())
+
class ForeignFileSystem(FileSystemType):
def __init__(self):
FileSystemType.__init__(self)