Gentoo Archives: gentoo-commits

From: "Benedikt Boehm (hollow)" <hollow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-admin/chef-expander/files/initd: chef-expander
Date: Sun, 29 Jan 2012 12:17:37
Message-Id: 20120129121726.484E82004C@flycatcher.gentoo.org
1 hollow 12/01/29 12:17:26
2
3 Modified: chef-expander
4 Log:
5 version bump wrt #396693
6
7 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-admin/chef-expander/files/initd/chef-expander
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef-expander/files/initd/chef-expander?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef-expander/files/initd/chef-expander?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef-expander/files/initd/chef-expander?r1=1.1&r2=1.2
15
16 Index: chef-expander
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/chef-expander/files/initd/chef-expander,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- chef-expander 25 Jul 2011 09:11:47 -0000 1.1
23 +++ chef-expander 29 Jan 2012 12:17:26 -0000 1.2
24 @@ -1,5 +1,5 @@
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
30 depend() {
31 @@ -25,15 +25,19 @@
32 start() {
33 ebegin "Starting Chef Expander"
34 fix_owners
35 - start-stop-daemon --start --quiet --chuid ${CHEF_USER}:${CHEF_GROUP} \
36 - --pidfile ${CHEF_EXPANDER_PIDFILE} --exec ${CHEF_EXPANDER_BINARY} \
37 - -- -d -P ${CHEF_EXPANDER_PIDFILE} -L ${CHEF_EXPANDER_LOGFILE} \
38 - -c ${CONFIGFILE} ${CHEF_EXPANDER_OPTS}
39 + start-stop-daemon --start \
40 + --pidfile ${CHEF_EXPANDER_PIDFILE} \
41 + --user ${CHEF_USER}:${CHEF_GROUP} \
42 + --exec ${CHEF_EXPANDER_BINARY} \
43 + -- \
44 + -d -P ${CHEF_EXPANDER_PIDFILE} -L ${CHEF_EXPANDER_LOGFILE} \
45 + -c ${CONFIGFILE} \
46 + ${CHEF_EXPANDER_OPTS}
47 eend $?
48 }
49
50 stop() {
51 ebegin "Shutting down Chef Expander"
52 - start-stop-daemon --stop --quiet --pidfile ${CHEF_EXPANDER_PIDFILE}
53 + start-stop-daemon --stop --pidfile ${CHEF_EXPANDER_PIDFILE}
54 eend $?
55 }