Fix musl stage3 variant

This commit is contained in:
thiblizz 2023-10-13 01:18:00 +02:00 committed by GitHub
parent 1321769bb5
commit d7ef780331
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 6 deletions

View File

@ -13,13 +13,13 @@ function install_stage3() {
}
function configure_base_system() {
einfo "Generating locales"
echo "$LOCALES" > /etc/locale.gen \
|| die "Could not write /etc/locale.gen"
locale-gen \
|| die "Could not generate locales"
if [[ $SYSTEMD == "true" ]]; then
einfo "Generating locales"
echo "$LOCALES" > /etc/locale.gen \
|| die "Could not write /etc/locale.gen"
locale-gen \
|| die "Could not generate locales"
einfo "Setting machine-id"
systemd-machine-id-setup \
|| die "Could not setup systemd machine id"
@ -43,6 +43,9 @@ function configure_base_system() {
ln -sfn "../usr/share/zoneinfo/$TIMEZONE" /etc/localtime \
|| die "Could not change /etc/localtime link"
else
einfo "Installing musl-locales"
try emerge --verbose sys-apps/musl-locales
# Set hostname
einfo "Selecting hostname"
sed -i "/hostname=/c\\hostname=\"$HOSTNAME\"" /etc/conf.d/hostname \