Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

mkfs.xfs uses -f instead of -F flag #18

Merged
merged 1 commit into from
Sep 29, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion system/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=""
Expand Down