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/18777/head
jravetch 10 years ago committed by Matt Clay
parent e9f98c0efc
commit 2a8fc63645

@ -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=""

Loading…
Cancel
Save