summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2019-04-03 21:54:06 -0400
committerMike Gilbert <floppym@gentoo.org>2019-04-03 21:54:06 -0400
commitc0dca773e47d3532401cea9be36da5f4c563159c (patch)
treea2fecda8936fe214a7fbfbbf9614a26c053e66eb /sys-apps/dbus/files
parentsys-apps/systemd: bump to 242_rc2 (diff)
downloadgentoo-c0dca773e47d3532401cea9be36da5f4c563159c.tar.gz
gentoo-c0dca773e47d3532401cea9be36da5f4c563159c.tar.bz2
gentoo-c0dca773e47d3532401cea9be36da5f4c563159c.zip
sys-apps/dbus: move stuff under /run on linux
systemd-242 complains about sockets under /var/run. Let's avoid that. Package-Manager: Portage-2.3.62_p4, Repoman-2.3.12_p87 Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-apps/dbus/files')
-rw-r--r--sys-apps/dbus/files/dbus.initd.in36
1 files changed, 36 insertions, 0 deletions
diff --git a/sys-apps/dbus/files/dbus.initd.in b/sys-apps/dbus/files/dbus.initd.in
new file mode 100644
index 000000000000..10c7201be478
--- /dev/null
+++ b/sys-apps/dbus/files/dbus.initd.in
@@ -0,0 +1,36 @@
+#!/sbin/openrc-run
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License, v2 or later
+
+extra_started_commands="reload"
+
+description="An IPC message bus daemon"
+pidfile="@rundir@/dbus.pid"
+command="/usr/bin/dbus-daemon"
+command_args="--system"
+
+dbus_socket="@rundir@/dbus/system_bus_socket"
+
+depend() {
+ need localmount
+ after bootmisc
+}
+
+start_pre() {
+ /usr/bin/dbus-uuidgen --ensure=/etc/machine-id
+
+ # We need to test if /var/run/dbus exists, since script will fail if it does not
+ checkpath -q -d "@rundir@/dbus"
+}
+
+stop_post() {
+ [ ! -S "${dbus_socket}" ] || rm -f "${dbus_socket}"
+}
+
+reload() {
+ ebegin "Reloading D-BUS messagebus config"
+ dbus-send --print-reply --system --type=method_call \
+ --dest=org.freedesktop.DBus \
+ / org.freedesktop.DBus.ReloadConfig > /dev/null
+ eend $?
+}