mkfs.xfs uses -f instead of -F flag

mkfs.xfs uses the -f instead of -F flag to force creating a filesystem on a devices that have an existing filesystem
pull/4420/head
jravetch 2014-09-29 15:40:58 -07:00 committed by Matt Clay
parent e9f98c0efc
commit 2a8fc63645
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ def main():
cmd = None
if fstype in ['ext2', 'ext3', 'ext4', 'ext4dev']:
force_flag="-F"
elif fstype in ['btrfs']:
elif fstype in ['xfs', 'btrfs']:
force_flag="-f"
else:
force_flag=""