Gentoo Archives: gentoo-commits

From: "Robert Buchholz (rbu)" <rbu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/oftpd/files: init.d.oftpd-r1
Date: Fri, 29 May 2009 14:00:08
Message-Id: E1MA2cw-00048d-Gu@stork.gentoo.org
1 rbu 09/05/29 14:00:06
2
3 Modified: init.d.oftpd-r1
4 Log:
5 Fix #97183 for real. The new init script had not been installed before.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 net-ftp/oftpd/files/init.d.oftpd-r1
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/oftpd/files/init.d.oftpd-r1?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/oftpd/files/init.d.oftpd-r1?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/oftpd/files/init.d.oftpd-r1?r1=1.1&r2=1.2
14
15 Index: init.d.oftpd-r1
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-ftp/oftpd/files/init.d.oftpd-r1,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- init.d.oftpd-r1 2 Jul 2005 23:15:07 -0000 1.1
22 +++ init.d.oftpd-r1 29 May 2009 14:00:06 -0000 1.2
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/net-ftp/oftpd/files/init.d.oftpd-r1,v 1.1 2005/07/02 23:15:07 eradicator Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/oftpd/files/init.d.oftpd-r1,v 1.2 2009/05/29 14:00:06 rbu Exp $
29
30 depend() {
31 need net
32 @@ -9,7 +9,7 @@
33
34 checkconfig() {
35 if [[ -z ${FTPUSER} || -z ${FTPROOT} || -z ${FTPPORT} ] ; then
36 - eerror "You need to setup FTPUSER and FTPROOT in /etc/conf.d/oftpd"
37 + eerror "You need to setup FTPUSER, FTPROOT and FTPPORT in /etc/conf.d/oftpd"
38 return 1
39 fi
40 }