mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-03 12:25:38 -04:00
Merge pull request #1770 from dr460nf1r3/calamares
[fstab] Dont set fsck check for BTRFS in fstab
This commit is contained in:
commit
61ee55db6a
1 changed files with 2 additions and 2 deletions
|
@ -244,9 +244,9 @@ class FstabGenerator(object):
|
|||
if extra:
|
||||
options += "," + extra
|
||||
|
||||
if mount_point == "/":
|
||||
if mount_point == "/" and filesystem != "btrfs":
|
||||
check = 1
|
||||
elif mount_point and mount_point != "swap":
|
||||
elif mount_point and mount_point != "swap" and filesystem != "btrfs":
|
||||
check = 2
|
||||
else:
|
||||
check = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue