Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mpd/files: mpd.init
Date: Tue, 02 Jul 2013 14:24:35
Message-Id: 20130702142432.5D8DC2171C@flycatcher.gentoo.org
1 jer 13/07/02 14:24:32
2
3 Modified: mpd.init
4 Log:
5 Whitespace.
6
7 (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.3 media-sound/mpd/files/mpd.init
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/files/mpd.init?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/files/mpd.init?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/mpd/files/mpd.init?r1=1.2&r2=1.3
15
16 Index: mpd.init
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/files/mpd.init,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- mpd.init 19 May 2013 16:23:00 -0000 1.2
23 +++ mpd.init 2 Jul 2013 14:24:32 -0000 1.3
24 @@ -1,12 +1,12 @@
25 #!/sbin/runscript
26 # Copyright 1999-2013 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/files/mpd.init,v 1.2 2013/05/19 16:23:00 angelos Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/files/mpd.init,v 1.3 2013/07/02 14:24:32 jer Exp $
30
31 depend() {
32 need localmount
33 use net netmount nfsmount alsasound esound pulseaudio
34 -}
35 +}
36
37 checkconfig() {
38 if ! [ -f /etc/mpd.conf ]; then
39 @@ -20,7 +20,7 @@
40 start() {
41 checkconfig || return 1
42
43 - ebegin "Starting Music Player Daemon"
44 + ebegin "Starting Music Player Daemon"
45 start-stop-daemon --start --quiet --background --exec /usr/bin/mpd --pidfile /var/run/mpd.pid --make-pidfile -- --no-daemon /etc/mpd.conf 2>/dev/null
46 eend $?
47 }
48 @@ -28,5 +28,5 @@
49 stop() {
50 ebegin "Stopping Music Player Daemon"
51 start-stop-daemon --stop --exec /usr/bin/mpd --pidfile /var/run/mpd.pid
52 - eend $?
53 + eend $?
54 }