Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/burp/files/
Date: Tue, 06 Jun 2017 09:19:42
Message-Id: 1496740668.f9d2da2e5f0a5245cad02880e354f579cec8a012.marecki@gentoo
1 commit: f9d2da2e5f0a5245cad02880e354f579cec8a012
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 6 08:56:56 2017 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 6 09:17:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9d2da2e
7
8 app-backup/burp: prevent OpenRC init stript from writing the PID file
9
10 Burp manages its PID file by itself and refuses to start if it already exists,
11 therefore start-stop-daemon shouldn't write one.
12
13 Gentoo-Bug: 620654
14
15 Package-Manager: Portage-2.3.5, Repoman-2.3.1
16
17 app-backup/burp/files/burp2.initd | 4 ++--
18 1 file changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/app-backup/burp/files/burp2.initd b/app-backup/burp/files/burp2.initd
21 index 4aa07ac43fe..02a7ea856c4 100644
22 --- a/app-backup/burp/files/burp2.initd
23 +++ b/app-backup/burp/files/burp2.initd
24 @@ -1,5 +1,5 @@
25 #!/sbin/openrc-run
26 -# Copyright 1999-2016 Gentoo Foundation
27 +# Copyright 1999-2017 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29
30 BURP_CONFIG="/etc/burp/burp-server.conf"
31 @@ -10,7 +10,7 @@ command="/usr/sbin/burp"
32 command_args="-c '${BURP_CONFIG}' -F"
33 command_background="yes"
34 pidfile="/run/burp/burp.server.pid"
35 -start_stop_daemon_arg="--make-pidfile --wait 500"
36 +start_stop_daemon_arg="--wait 500"
37
38 extra_started_commands="reload summary"
39 description_reload="Reloads configuration"