-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bootloader/grub2: Don't do anything if we have static configs
This builds on top of coreos/bootupd@fa9924e (But in a very hacky way because we don't currently link to a JSON library) Basically, bootupd supports injecting static configs, and this is the currently least hacky way for us to detect this and understand that we shouldn't try to run `grub2-mkconfig`. A further patch I'd like to do here is also change the probing logic to gracefully no-op if `grub2-mkconfig` doesn't exist, but that has a bit more risk and involvement.
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
set -xeuo pipefail | ||
|
||
. ${KOLA_EXT_DATA}/libinsttest.sh | ||
|
||
require_writable_sysroot | ||
prepare_tmpdir | ||
|
||
bootupd_state=/boot/bootupd-state.json | ||
mount -o remount,rw /boot | ||
if grep -qFe "\"static-configs\"" "${bootupd_state}"; then | ||
echo "Host is using static configs already, overriding this" | ||
jq 'del(.["static-configs"])' < "${bootupd_state}" > "${bootupd_state}".new | ||
mv "${bootupd_state}.new" "${bootupd_state}" | ||
fi | ||
|
||
# Print the current value for reference, it's "none" on FCOS derivatives | ||
ostree config get sysroot.bootloader || true | ||
ostree config set sysroot.bootloader auto | ||
|
||
ostree admin deploy --stage "${host_commit}" | ||
systemctl stop ostree-finalize-staged.service | ||
used_bootloader=$(journalctl -u ostree-finalize-staged -o json MESSAGE_ID=dd440e3e549083b63d0efc7dc15255f1 | tail -1 | jq -r .OSTREE_BOOTLOADER) | ||
# We're verifying the legacy default now | ||
assert_streq "${used_bootloader}" "grub2" | ||
ostree admin undeploy 0 | ||
|
||
# Now synthesize a bootupd config which uses static configs | ||
jq '. + {"static-configs": {}}' < "${bootupd_state}" > "${bootupd_state}".new | ||
mv "${bootupd_state}.new" "${bootupd_state}" | ||
ostree admin deploy --stage "${host_commit}" | ||
systemctl stop ostree-finalize-staged.service | ||
used_bootloader=$(journalctl -u ostree-finalize-staged -o json MESSAGE_ID=dd440e3e549083b63d0efc7dc15255f1 | tail -1 | jq -r .OSTREE_BOOTLOADER) | ||
assert_streq "${used_bootloader}" "none" | ||
|
||
echo "ok bootupd static" |