compatboot: cleanup

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-09-09 19:12:27 +02:00
parent 812a5d95f1
commit 250e809fe2

View File

@ -2,11 +2,6 @@
# Compatibility boot
function compatboot () {
# Locale
KEYMAP="$(readConfigKey "keymap" "${USER_CONFIG_FILE}")"
if [ -n "${KEYMAP}" ]; then
export LC_ALL="${KEYMAP}.UTF-8"
fi
# Timezone
TIMEZONE="$(readConfigKey "time.timezone" "${USER_CONFIG_FILE}")"
REGION="$(readConfigKey "time.region" "${USER_CONFIG_FILE}")"
@ -15,5 +10,4 @@ function compatboot () {
fi
# Check for compatibility
deleteConfigKey "nanover" "${USER_CONFIG_FILE}"
return 0
}