new blfs: sys-apps/dbus-1.16.2

This commit is contained in:
wyj
2025-12-31 19:28:04 -05:00
parent bdb9ea0312
commit 1718b4f3fe
2 changed files with 91 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
target=(/etc/dbus-1/system.d/*.conf
/usr/share/dbus-1/system.d/*.conf
/usr/share/dbus-1/system-services/*.service
)
triggers=("install" "remove")
operation() {
if systemd-detect-virt --chroot; then
echo >&2 " Skipped: Running in chroot."
exit 0
fi
if ! systemd-notify --booted; then
echo >&2 " Skipped: Current root is not booted."
exit 0
fi
/usr/bin/systemctl try-reload-or-restart dbus.service
}