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/files/initd: chef-client
Date: Sun, 29 Jan 2012 12:07:35
Message-Id: 20120129120726.3EC662004B@flycatcher.gentoo.org
1 hollow 12/01/29 12:07:26
2
3 Modified: chef-client
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/files/initd/chef-client
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/files/initd/chef-client?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/files/initd/chef-client?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-admin/chef/files/initd/chef-client?r1=1.1&r2=1.2
15
16 Index: chef-client
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-admin/chef/files/initd/chef-client,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- chef-client 3 Jul 2010 12:36:13 -0000 1.1
23 +++ chef-client 29 Jan 2012 12:07:26 -0000 1.2
24 @@ -1,5 +1,5 @@
25 #!/sbin/runscript
26 -# Copyright 1999-2010 Gentoo Foundation
27 +# Copyright 1999-2012 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29
30 depend() {
31 @@ -14,14 +14,17 @@
32
33 start() {
34 ebegin "Starting Chef client"
35 - start-stop-daemon --start --quiet --pidfile ${CHEF_CLIENT_PIDFILE} \
36 - --exec ${CHEF_CLIENT_BINARY} -- -d -c ${CONFIGFILE} \
37 - -i ${INTERVAL} -s ${SPLAY} ${CHEF_CLIENT_OPTS}
38 + start-stop-daemon --start \
39 + --pidfile ${CHEF_CLIENT_PIDFILE} \
40 + --exec ${CHEF_CLIENT_BINARY} \
41 + -- \
42 + -d -c ${CONFIGFILE} -i ${INTERVAL} -s ${SPLAY} \
43 + ${CHEF_CLIENT_OPTS}
44 eend $?
45 }
46
47 stop() {
48 ebegin "Shutting down Chef client"
49 - start-stop-daemon --stop --quiet --pidfile ${CHEF_CLIENT_PIDFILE}
50 + start-stop-daemon --stop --pidfile ${CHEF_CLIENT_PIDFILE}
51 eend $?
52 }