From ab89318b9d37435b8ef7ad4a3a44a7101f276509 Mon Sep 17 00:00:00 2001 From: ferrreo Date: Thu, 19 Oct 2023 16:46:52 +0100 Subject: [PATCH] Update booster.postinst --- debian/booster.postinst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/debian/booster.postinst b/debian/booster.postinst index 4fd36e9..12bd2f7 100644 --- a/debian/booster.postinst +++ b/debian/booster.postinst @@ -4,6 +4,13 @@ set -e 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 crypt_check=$(cat /etc/crypttab | grep -v '^#' || true) if [[ -n $crypt_check ]]