From 9fca3675b71b49a50c3e9f396c0d66f9a0279d10 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 3 Jul 2026 09:57:23 +0000 Subject: [PATCH] Update Fedora kickstart localization and bootstrap --- installers/fedora-workstation/ks.cfg | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/installers/fedora-workstation/ks.cfg b/installers/fedora-workstation/ks.cfg index e5cfcea..34e04f3 100644 --- a/installers/fedora-workstation/ks.cfg +++ b/installers/fedora-workstation/ks.cfg @@ -3,13 +3,15 @@ text reboot -lang en_US.UTF-8 -keyboard us +lang de_DE.UTF-8 +keyboard de timezone Europe/Berlin --utc -rootpw --plaintext changeme +rootpw --plaintext test123 +user --name=stallinger --groups=wheel --password=test123 + +network --bootproto=dhcp --activate --hostname=fedora-test-01 -network --bootproto=dhcp zerombr clearpart --all --initlabel @@ -28,5 +30,18 @@ git %end %post -echo "Provisioned by Stallinux" > /etc/motd +cat > /etc/motd <<'EOF' +Provisioned by tuxflotte + +https://tuxflotte.de +EOF + +localectl set-locale LANG=de_DE.UTF-8 +localectl set-keymap de +localectl set-x11-keymap de + +dnf -y install git ansible-core + +mkdir -p /opt/tuxflotte +git clone https://git.tuxflotte.de/admin/profiles.git /opt/tuxflotte/profiles %end