From 807e82dde40cc66a5a91b65f8e8ac9f75dffddb8 Mon Sep 17 00:00:00 2001 From: Vendula Poncova Date: Mon, 27 Nov 2023 12:02:12 +0100 Subject: [PATCH] docs: Remove the bootupd workaround from example.ks The installer supports bootupd now, so we can drop the workaround. See: https://github.com/rhinstaller/anaconda/pull/5298/ --- docs/example.ks | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/example.ks b/docs/example.ks index f6d251f..176169f 100644 --- a/docs/example.ks +++ b/docs/example.ks @@ -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