diff --git a/docs/example.ks b/docs/example.ks index f6d251f1..7b06a492 100644 --- a/docs/example.ks +++ b/docs/example.ks @@ -1,12 +1,12 @@ text - +# NOTE: As of the time of this writing, this kickstart only +# works with a Fedora 40+ (or ELN) installer ISO as it requires +# https://github.com/rhinstaller/anaconda/pull/5342 # Basic partitioning clearpart --all --initlabel --disklabel=gpt -part prepboot --size=4 --fstype=prepboot -part biosboot --size=1 --fstype=biosboot -part /boot/efi --size=100 --fstype=efi -part /boot --size=1000 --fstype=ext4 --label=boot +part /boot --size=1000 --fstype=ext4 --label=boot part / --grow --fstype xfs +reqpart ostreecontainer --url quay.io/centos-bootc/fedora-bootc:eln --no-signature-verification # Or: quay.io/centos-bootc/centos-bootc-dev:stream9 @@ -19,14 +19,3 @@ rootpw --iscrypted locked # Add your example SSH key here! #sshkey --username root "ssh-ed25519 demo@example.com" reboot - -# Workarounds until https://github.com/rhinstaller/anaconda/pull/5298/ lands -bootloader --location=none --disabled -%post --erroronfail -set -euo pipefail -# Work around anaconda wanting a root password -passwd -l root -rootdevice=$(findmnt -nv -o SOURCE /) -device=$(lsblk -n -o PKNAME ${rootdevice}) -/usr/bin/bootupctl backend install --auto --with-static-configs --device /dev/${device} / -%end