diff options
Diffstat (limited to 'debian/patches/test-FULL-SYSTEMD-no-need-to-include-dbus-to-the-target-r.patch')
-rw-r--r-- | debian/patches/test-FULL-SYSTEMD-no-need-to-include-dbus-to-the-target-r.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/debian/patches/test-FULL-SYSTEMD-no-need-to-include-dbus-to-the-target-r.patch b/debian/patches/test-FULL-SYSTEMD-no-need-to-include-dbus-to-the-target-r.patch new file mode 100644 index 0000000..a149d7c --- /dev/null +++ b/debian/patches/test-FULL-SYSTEMD-no-need-to-include-dbus-to-the-target-r.patch @@ -0,0 +1,32 @@ +From: Laszlo Gombos <laszlo.gombos@gmail.com> +Date: Sat, 4 Nov 2023 02:25:18 -0400 +Subject: test(FULL SYSTEMD): no need to include dbus to the target rootfs + +systemd does not depend on dbus. + +Origin: upstream, https://github.com/dracutdevs/dracut/pull/2549 +--- + test/TEST-04-FULL-SYSTEMD/test-init.sh | 3 +-- + test/TEST-04-FULL-SYSTEMD/test.sh | 2 +- + 2 files changed, 2 insertions(+), 3 deletions(-) + +--- a/test/TEST-04-FULL-SYSTEMD/test-init.sh ++++ b/test/TEST-04-FULL-SYSTEMD/test-init.sh +@@ -37,5 +37,4 @@ + setsid $CTTY sh -i + fi + echo "Powering down." +-systemctl --no-block poweroff +-exit 0 ++poweroff -f +--- a/test/TEST-04-FULL-SYSTEMD/test.sh ++++ b/test/TEST-04-FULL-SYSTEMD/test.sh +@@ -52,7 +52,7 @@ + + # Create what will eventually be our root filesystem onto an overlay + "$DRACUT" -l --keep --tmpdir "$TESTDIR" \ +- -m "test-root dbus" \ ++ -m "test-root systemd" \ + -I "ldconfig" \ + -i ./test-init.sh /sbin/test-init \ + -i ./fstab /etc/fstab \ |