From 7c050b79201689fb1f2262f00478ed415ed5f070 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 28 Dec 2024 09:40:15 -0600 Subject: [PATCH] fedora-common: Clear out machine-id Apparently something is populating `/etc/machine-id` at install time now, which prevents units scheduled to run on first boot (with `ConditionFirstBoot=true`) from starting. --- fedora-common.ks | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fedora-common.ks b/fedora-common.ks index aae51aa..5206dce 100644 --- a/fedora-common.ks +++ b/fedora-common.ks @@ -46,6 +46,8 @@ services --enabled systemd-networkd,systemd-resolved,ssh-host-certs-renew.timer, %post --erroronfail export NO_PROXY='pyrocufflink.blue,*.pyrocufflink.blue' +echo uninitialized > /etc/machine-id + echo 'install_weak_deps=0' >> /etc/dnf/dnf.conf echo 'deltarpm=0' >> /etc/dnf/dnf.conf echo '%_excludedocs 1' >> /etc/rpm/macros