From: Frantisek Sumsal Date: Thu, 11 Jan 2024 10:02:05 +0000 (+0100) Subject: test: fix dbus installation on Arch X-Git-Tag: v256-rc1~1192 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec6c7bac5c92b26fc17ad165d2defc85da324391;p=thirdparty%2Fsystemd.git test: fix dbus installation on Arch Arch finally made dbus-broker the default dbus daemon [0], but unlike Fedora they don't use Alias=dbus.service to make the dbus.symlink under /etc, instead they create the symlink manually under /usr/lib, so let's account for that. [0] https://gitlab.archlinux.org/archlinux/packaging/packages/dbus-broker/-/commit/b24d15795addeb15f9532f28deae9475fad8b9fa --- diff --git a/test/test-functions b/test/test-functions index 016cf156827..6db79bd4161 100644 --- a/test/test-functions +++ b/test/test-functions @@ -2196,14 +2196,14 @@ install_dbus() { # Newer Fedora versions use dbus-broker by default. Let's install it if it's available. if [ -f "$ROOTLIBDIR/system/dbus-broker.service" ]; then inst "$ROOTLIBDIR/system/dbus-broker.service" - inst_symlink /etc/systemd/system/dbus.service inst /usr/bin/dbus-broker inst /usr/bin/dbus-broker-launch + image_install -o {/etc,/usr/lib}/systemd/system/dbus.service elif [ -f "$ROOTLIBDIR/system/dbus-daemon.service" ]; then # Fedora rawhide replaced dbus.service with dbus-daemon.service inst "$ROOTLIBDIR/system/dbus-daemon.service" # Alias symlink - inst_symlink /etc/systemd/system/dbus.service + image_install -o {/etc,/usr/lib}/systemd/system/dbus.service else inst "$ROOTLIBDIR/system/dbus.service" fi @@ -2262,12 +2262,12 @@ EOF # Newer Fedora versions use dbus-broker by default. Let's install it if it's available. if [ -f "$userunitdir/dbus-broker.service" ]; then inst "$userunitdir/dbus-broker.service" - inst_symlink /etc/systemd/user/dbus.service + image_install -o {/etc,/usr/lib}/systemd/user/dbus.service elif [ -f "${ROOTLIBDIR:?}/system/dbus-daemon.service" ]; then # Fedora rawhide replaced dbus.service with dbus-daemon.service inst "$userunitdir/dbus-daemon.service" # Alias symlink - inst_symlink /etc/systemd/user/dbus.service + image_install -o {/etc,/usr/lib}/systemd/user/dbus.service else inst "$userunitdir/dbus.service" fi