This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a change to branch f25 in repository fedora-kickstarts.
from f626ce2 astronomy: added astropy-tools subpackage new 73645f3 Touch the machine-id file
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: fedora-arm-base.ks | 1 + fedora-cloud-base.ks | 1 + fedora-docker-base.ks | 1 + fedora-live-base.ks | 1 + 4 files changed, 4 insertions(+)
This is an automated email from the git hooks/post-receive script.
pbrobinson pushed a commit to branch f25 in repository fedora-kickstarts.
commit 73645f341ed34239e13c27ce8e7e8702487a6718 Author: Peter Robinson pbrobinson@gmail.com Date: Tue Sep 27 20:17:46 2016 +0100
Touch the machine-id file
So is seems that if you remove the machine-id file it won't regenerate the file but if you touch the file and leave it empty on boot it'll put a new machine-id in the empty file. So work around this bug ("feature"?) by touching the file so we don't have other issues in the process.
We're track the outcome of this in RHBZ 1379800 --- fedora-arm-base.ks | 1 + fedora-cloud-base.ks | 1 + fedora-docker-base.ks | 1 + fedora-live-base.ks | 1 + 4 files changed, 4 insertions(+)
diff --git a/fedora-arm-base.ks b/fedora-arm-base.ks index 70c603d..08f8c84 100644 --- a/fedora-arm-base.ks +++ b/fedora-arm-base.ks @@ -87,6 +87,7 @@ dnf -y remove dracut-config-generic
# Remove machine-id on pre generated images rm -f /etc/machine-id +touch /etc/machine-id
%end
diff --git a/fedora-cloud-base.ks b/fedora-cloud-base.ks index 4f1dea2..e73541a 100644 --- a/fedora-cloud-base.ks +++ b/fedora-cloud-base.ks @@ -272,6 +272,7 @@ rm -f /etc/sysconfig/network-scripts/ifcfg-ens3
# Remove machine-id on pre generated images rm -f /etc/machine-id +touch /etc/machine-id
%end
diff --git a/fedora-docker-base.ks b/fedora-docker-base.ks index bcbb58e..1c7545f 100644 --- a/fedora-docker-base.ks +++ b/fedora-docker-base.ks @@ -89,5 +89,6 @@ systemd-tmpfiles --create --boot
# Remove machine-id on pre generated images rm -f /etc/machine-id +touch /etc/machine-id
%end diff --git a/fedora-live-base.ks b/fedora-live-base.ks index 9bf998b..3c5f279 100644 --- a/fedora-live-base.ks +++ b/fedora-live-base.ks @@ -327,6 +327,7 @@ rm -f /boot/*-rescue*
# Remove machine-id on pre generated images rm -f /etc/machine-id +touch /etc/machine-id
%end