768c5e188c
As described in the comment, we need to create the /etc/machine-id for the image-based build when systemd isn't updated (as is usually the case for a new distro) Work on clearing this out continues, but this brings it to parity with fedora-minimal. Change-Id: Icbbbabb4114d4d95909648d8e39a6bae6d2a7b7b Depends-On: I761e425f8a658669d9b8a70ce4260cec263ea51a
20 lines
616 B
Bash
Executable File
20 lines
616 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# The systemd .spec file does this in %post [1] and it turns out that
|
|
# (in what is possibly a bug [2]) that kernel install requires
|
|
# /etc/machine-id. This affects "fedora" (the image-based build) if
|
|
# there is no systemd update to install ... with "fedora-minimal" we
|
|
# are always installing into the chroot so, so %post always runs and
|
|
# this is always run
|
|
#
|
|
# [1] https://src.fedoraproject.org/rpms/systemd/blob/master/f/systemd.spec
|
|
# [2] https://bugzilla.redhat.com/show_bug.cgi?id=1486124
|
|
|
|
systemd-machine-id-setup
|