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
This commit is contained in:
jravetch 2014-09-29 15:40:58 -07:00 committed by Matt Clay
parent e9f98c0efc
commit 2a8fc63645

View file

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