void-packages/srcpkgs/dbus/INSTALL
Juan RP a1628c643e dbus: run dbus-uuidgen --ensure via post-install not via runit.
Also remove the REMOVE script, which is completely wrong.
2015-01-13 19:09:24 +01:00

10 lines
290 B
Plaintext

case "${ACTION}" in
post)
[ ! -d var/lib/dbus ] && install -d var/lib/dbus
[ ! -d etc/dbus-1/session.d ] && install -d etc/dbus-1/session.d
chown root:22 usr/libexec/dbus-daemon-launch-helper
chmod 4750 usr/libexec/dbus-daemon-launch-helper
usr/bin/dbus-uuidgen --ensure || :
;;
esac