From 5aadb0116a468d8fef5155e93fcc219ad58c2e81 Mon Sep 17 00:00:00 2001 From: Gunnar Wolf Date: Tue, 8 Jun 2021 11:57:34 -0500 Subject: [PATCH] Ugh, pointed to wrong directory (should be /var/lib/dbus). Fixed. --- raspi_master.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raspi_master.yaml b/raspi_master.yaml index a4e8f8b..bbddb8f 100644 --- a/raspi_master.yaml +++ b/raspi_master.yaml @@ -151,7 +151,7 @@ steps: rm "${ROOT?}/etc/resolv.conf" root-fs: / - # Clear /etc/machine-id and /var/lib/bus/machine-id, as both should + # Clear /etc/machine-id and /var/lib/dbus/machine-id, as both should # be auto-generated upon first boot. From the manpage # (machine-id(5)): # @@ -162,4 +162,4 @@ steps: # Note this will also trigger ConditionFirstBoot=yes for systemd. - chroot: / shell: | - rm -f /etc/machine-id /var/lib/bus/machine-id + rm -f /etc/machine-id /var/lib/dbus/machine-id