mounts/fat: Xfs -> Fat
Fix the wrong symbol prefixes for the Fat-Mounter. Looks like a copy-paste from the Xfs-mounter. Signed-off-by: David Rheinsberg <david.rheinsberg@gmail.com>
This commit is contained in:
parent
2544486332
commit
d77e87f3c1
1 changed files with 2 additions and 2 deletions
|
|
@ -33,14 +33,14 @@ SCHEMA_2 = """
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class XfsMount(mounts.FileSystemMountService):
|
class FatMount(mounts.FileSystemMountService):
|
||||||
|
|
||||||
def translate_options(self, _options: Dict):
|
def translate_options(self, _options: Dict):
|
||||||
return ["-t", "vfat"]
|
return ["-t", "vfat"]
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
service = XfsMount.from_args(sys.argv[1:])
|
service = FatMount.from_args(sys.argv[1:])
|
||||||
service.main()
|
service.main()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue