Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/dbus/files/
Date: Thu, 25 Jun 2020 07:31:04
Message-Id: 1593070239.a1a3bb0fc62b6944db42955147d3c954a44394aa.conikost@gentoo
1 commit: a1a3bb0fc62b6944db42955147d3c954a44394aa
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Jun 22 18:16:48 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 25 07:30:39 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a3bb0f
7
8 sys-apps/dbus: remove unused file
9
10 Closes: https://github.com/gentoo/gentoo/pull/16376
11 Package-Manager: Portage-2.3.101, Repoman-2.3.22
12 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 sys-apps/dbus/files/dbus.initd-r1 | 36 ------------------------------------
16 1 file changed, 36 deletions(-)
17
18 diff --git a/sys-apps/dbus/files/dbus.initd-r1 b/sys-apps/dbus/files/dbus.initd-r1
19 deleted file mode 100644
20 index bd3542381a7..00000000000
21 --- a/sys-apps/dbus/files/dbus.initd-r1
22 +++ /dev/null
23 @@ -1,36 +0,0 @@
24 -#!/sbin/openrc-run
25 -# Copyright 1999-2016 Gentoo Foundation
26 -# Distributed under the terms of the GNU General Public License, v2 or later
27 -
28 -extra_started_commands="reload"
29 -
30 -description="An IPC message bus daemon"
31 -pidfile="/var/run/dbus.pid"
32 -command="/usr/bin/dbus-daemon"
33 -command_args="--system"
34 -
35 -dbus_socket="/var/run/dbus/system_bus_socket"
36 -
37 -depend() {
38 - need localmount
39 - after bootmisc
40 -}
41 -
42 -start_pre() {
43 - /usr/bin/dbus-uuidgen --ensure=/etc/machine-id
44 -
45 - # We need to test if /var/run/dbus exists, since script will fail if it does not
46 - checkpath -q -d /var/run/dbus
47 -}
48 -
49 -stop_post() {
50 - [ ! -S "${dbus_socket}" ] || rm -f "${dbus_socket}"
51 -}
52 -
53 -reload() {
54 - ebegin "Reloading D-BUS messagebus config"
55 - /usr/bin/dbus-send --print-reply --system --type=method_call \
56 - --dest=org.freedesktop.DBus \
57 - / org.freedesktop.DBus.ReloadConfig > /dev/null
58 - eend $?
59 -}