@@ -10,7 +10,7 @@ import (
10
10
const fstabContent = `
11
11
# UNCONFIGURED FSTAB FOR BASE SYSTEM
12
12
LABEL=UEFI /boot/efi vfat umask=0077 0 1
13
- /mnt/sdb:/mnt/sdc /media mergerfs defaults,allow_other,use_ino, category.create=mfs,moveonenospc=true,minfreespace=1M 0 0
13
+ /mnt/sdb:/mnt/sdc /media mergerfs defaults,allow_other,category.create=mfs,moveonenospc=true,minfreespace=1M 0 0
14
14
LABEL=desktop-rootfs / ext4 defaults 0 1
15
15
`
16
16
@@ -31,7 +31,7 @@ func TestFSTab(t *testing.T) {
31
31
assert .Equal (t , entry .Source , "/mnt/sdb:/mnt/sdc" )
32
32
assert .Equal (t , entry .MountPoint , "/media" )
33
33
assert .Equal (t , entry .FSType , "mergerfs" )
34
- assert .Equal (t , entry .Options , "defaults,allow_other,use_ino, category.create=mfs,moveonenospc=true,minfreespace=1M" )
34
+ assert .Equal (t , entry .Options , "defaults,allow_other,category.create=mfs,moveonenospc=true,minfreespace=1M" )
35
35
assert .Equal (t , entry .Dump , 0 )
36
36
assert .Equal (t , entry .Pass , PassDoNotCheck )
37
37
@@ -51,7 +51,7 @@ func TestFSTab(t *testing.T) {
51
51
assert .Equal (t , entry .Source , "/mnt/sdb:/mnt/sdc" )
52
52
assert .Equal (t , entry .MountPoint , "/media" )
53
53
assert .Equal (t , entry .FSType , "mergerfs" )
54
- assert .Equal (t , entry .Options , "defaults,allow_other,use_ino, category.create=mfs,moveonenospc=true,minfreespace=1M" )
54
+ assert .Equal (t , entry .Options , "defaults,allow_other,category.create=mfs,moveonenospc=true,minfreespace=1M" )
55
55
assert .Equal (t , entry .Dump , 0 )
56
56
assert .Equal (t , entry .Pass , PassDoNotCheck )
57
57
}
0 commit comments