From ee5451bfec2f7c493b99e6321e7ddbe9b75aebb3 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Sun, 8 Mar 2026 16:11:49 +0100 Subject: [PATCH] Create enable_anaconda.sh --- iso/enable_anaconda.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 iso/enable_anaconda.sh diff --git a/iso/enable_anaconda.sh b/iso/enable_anaconda.sh new file mode 100644 index 0000000..459c9a0 --- /dev/null +++ b/iso/enable_anaconda.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +set -euo pipefail + +# Läuft im ISO-Rootfs während Titanoboa-Build + +dnf -y install \ + anaconda \ + anaconda-live \ + anaconda-install-env-deps \ + anaconda-dracut \ + pykickstart \ + lorax-templates-generic \ + || true + +# Anaconda als Install-UI im Live-System verfügbar machen +mkdir -p /etc/anaconda/profile.d +cat >/etc/anaconda/profile.d/custom.conf <<'EOF' +[Profile] +profile_id = custom +os_id = custom +efi_dir = fedora +menu_auto_hide = True +EOF