Install bluebuild logo

This commit is contained in:
Gerald Pinder
2024-07-15 21:16:24 -04:00
parent 7cd06eefa3
commit ee99add849
5 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -euo pipefail
# Only install cliwrap if it's not already installed
# Usually needed when doing kernel-related changes with classic Fedora tools
# so those tools are aware of ostree nature of Fedora Atomic & adapt to it
# https://coreos.github.io/rpm-ostree/cliwrap/
if [[ ! -f "/usr/libexec/rpm-ostree/wrapped/dracut" ]]; then
echo "Installing cliwrap"
rpm-ostree cliwrap install-to-root /
else
echo "Cliwrap is already installed"
fi
QUALIFIED_KERNEL="$(rpm -qa | grep -P 'kernel-(\d+\.\d+\.\d+)' | sed -E 's/kernel-//')"
/usr/libexec/rpm-ostree/wrapped/dracut --no-hostonly --kver "${QUALIFIED_KERNEL}" --reproducible -v --add ostree -f "/lib/modules/${QUALIFIED_KERNEL}/initramfs.img"
chmod 0600 "/lib/modules/${QUALIFIED_KERNEL}/initramfs.img"