Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/mpd/files: mpd.rc
Date: Wed, 15 Oct 2008 00:01:03
Message-Id: E1Kptoz-00084x-PW@stork.gentoo.org
1 angelos 08/10/15 00:01:01
2
3 Modified: mpd.rc
4 Log:
5 Removed old, new snapshot, removed die calls from enewuser (bug 237292) and removed --no-create-db from the init script (bug 241840)
6 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc6 x86_64)
7
8 Revision Changes Path
9 1.4 media-sound/mpd/files/mpd.rc
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpd/files/mpd.rc?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpd/files/mpd.rc?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/mpd/files/mpd.rc?r1=1.3&r2=1.4
14
15 Index: mpd.rc
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/mpd/files/mpd.rc,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- mpd.rc 11 Apr 2008 21:31:05 -0000 1.3
22 +++ mpd.rc 15 Oct 2008 00:01:01 -0000 1.4
23 @@ -1,7 +1,7 @@
24 #!/sbin/runscript
25 # Copyright 1999-2004 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/files/mpd.rc,v 1.3 2008/04/11 21:31:05 yngwin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/files/mpd.rc,v 1.4 2008/10/15 00:01:01 angelos Exp $
29
30 depend() {
31 need localmount
32 @@ -21,7 +21,7 @@
33 checkconfig || return 1
34
35 ebegin "Starting Music Player Daemon"
36 - /usr/bin/mpd --no-create-db /etc/mpd.conf
37 + /usr/bin/mpd /etc/mpd.conf
38 eend $?
39 }