Fixing locale

This commit is contained in:
Tibo De Peuter 2022-10-26 20:41:33 +02:00
parent 4a2e6bf6e7
commit ffb20898e1
23 changed files with 16 additions and 13 deletions

View file

@ -24,9 +24,12 @@ package_tdpeuter-base() {
)
post_install() {
systemctl enable NetworkManager.service
>&2 echo "Enabling NetworkManager"
systemctl enable --now NetworkManager.service
>&2 echo "Fixing locale"
sed -i "s/^#\(nl_BE.UTF-8 UTF-8\)/\1/g" "/etc/locale.gen"
locale-gen
}
}