Skip to content

Commit

Permalink
Fix xfs_grow arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
laurivosandi committed Nov 29, 2022
1 parent ac45d74 commit 3d9741c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion declarative.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ def be_fs_expanded(dev, path):
elif fs == "btrfs":
run(f"btrfs filesystem resize max {path}")
elif fs == "xfs":
run(f"xfs_growfs -d {dev}")
run(f"xfs_growfs -d {path}")
else:
raise Exception(f"Unsupported fsType: {fs}")

0 comments on commit 3d9741c

Please sign in to comment.