Compare commits

...

2 Commits
main ... lunar

Author SHA1 Message Date
d63183e4f7
Update booster.postinst 2023-10-19 16:46:36 +01:00
a77735f670
Update booster.postinst 2023-10-19 16:45:41 +01:00

View File

@ -4,6 +4,14 @@ set -e
touch /etc/vconsole.conf touch /etc/vconsole.conf
if cat /etc/vconsole.conf | grep -i 'KEYMAP='
then
true
else
echo "KEYMAP="us"" >> /etc/vconsole.conf
fi
# Check if there are entries in crypttab # Check if there are entries in crypttab
crypt_check=$(cat /etc/crypttab | grep -v '^#' || true) crypt_check=$(cat /etc/crypttab | grep -v '^#' || true)
if [[ -n $crypt_check ]] if [[ -n $crypt_check ]]