Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in mail-mta/exim/files: exim.rc7
Date: Tue, 28 Feb 2012 04:04:05
Message-Id: 20120228040355.6C7C82004C@flycatcher.gentoo.org
1 idl0r 12/02/28 04:03:55
2
3 Modified: exim.rc7
4 Log:
5 Don't use --quiet in the init script
6
7 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 mail-mta/exim/files/exim.rc7
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/files/exim.rc7?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/files/exim.rc7?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/mail-mta/exim/files/exim.rc7?r1=1.3&r2=1.4
15
16 Index: exim.rc7
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/mail-mta/exim/files/exim.rc7,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- exim.rc7 4 Dec 2011 10:03:10 -0000 1.3
23 +++ exim.rc7 28 Feb 2012 04:03:55 -0000 1.4
24 @@ -1,7 +1,7 @@
25 #!/sbin/runscript
26 -# Copyright 1999-2011 Gentoo Foundation
27 +# Copyright 1999-2012 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/files/exim.rc7,v 1.3 2011/12/04 10:03:10 swegener Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/files/exim.rc7,v 1.4 2012/02/28 04:03:55 idl0r Exp $
31
32 extra_started_commands="reload"
33
34 @@ -13,13 +13,13 @@
35
36 start() {
37 ebegin "Starting ${SVCNAME}"
38 - start-stop-daemon --start --quiet --exec /usr/sbin/exim --pidfile /var/run/${SVCNAME}.pid -- -C /etc/exim/${SVCNAME}.conf ${EXIM_OPTS:--bd -q15m}
39 + start-stop-daemon --start --exec /usr/sbin/exim --pidfile /var/run/${SVCNAME}.pid -- -C /etc/exim/${SVCNAME}.conf ${EXIM_OPTS:--bd -q15m}
40 eend $?
41 }
42
43 stop() {
44 ebegin "Stopping ${SVCNAME}"
45 - start-stop-daemon --stop --quiet --pidfile /var/run/${SVCNAME}.pid --name exim
46 + start-stop-daemon --stop --pidfile /var/run/${SVCNAME}.pid --name exim
47 eend $?
48 }