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:
parent
e9f98c0efc
commit
2a8fc63645
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue