From 5ef4950ce2fd89982a7879f8d57eeff8233724a7 Mon Sep 17 00:00:00 2001 From: Julian Wefers Date: Sun, 31 May 2026 14:28:46 +0200 Subject: [PATCH] add kickstart to bootc-builder config.toml --- config.toml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/config.toml b/config.toml index 88f6caf..9d03172 100644 --- a/config.toml +++ b/config.toml @@ -10,3 +10,24 @@ publisher = "Julian" # org.fedoraproject.Anaconda.Modules.Security # ] # disable = ["org.fedoraproject.Anaconda.Modules.Users"] + +[customizations.installer.kickstart] +contents = """ +# Basic setup +text +lang en_US +keyboard de +timezone Europe/Berlin +network --device=enp1s0 --bootproto=static --ip=192.168.178.3 --netmask=255.255.255.0 --gateway=192.168.178.1 --nameserver=1192.168.178.8 +# Basic partitioning +clearpart --all --initlabel --disklabel=gpt --drives=sda +reqpart --add-boot +part / --grow --fstype ext4 + +# Here's where we reference the container image to install - notice the kickstart +# has no `%packages` section! What's being installed here is a container image. +# ostreecontainer --url gitea.wefers.page/julian/backup-server:latest + +firewall --disabled +services --enabled=sshd +"""