mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-28 21:05:45 -05:00
fstab.conf: Add a new "crypttabOptions" option that defaults to "luks". Document that for Debian and Debian-based distributions, the setting should be changed to "luks,keyscript=/bin/cat". main.py: Append the options from the above setting to the end of every line in crypttab. At least the "luks" option should always be there, because there may be different encryption types. The Debian initramfs-tools also require the Debian-specific keyscript option and will otherwise ignore the keyfile entirely (see pull request #254).
13 lines
359 B
Text
13 lines
359 B
Text
---
|
|
mountOptions:
|
|
default: defaults,noatime
|
|
btrfs: defaults,noatime,space_cache,autodefrag
|
|
ssdExtraMountOptions:
|
|
ext4: discard
|
|
jfs: discard
|
|
xfs: discard
|
|
swap: discard
|
|
btrfs: discard,compress=lzo
|
|
crypttabOptions: luks
|
|
# For Debian and Debian-based distributions, change the above line to:
|
|
# crypttabOptions: luks,keyscript=/bin/cat
|