summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-03-06 03:54:20 +0000
committerMike Frysinger <vapier@gentoo.org>2004-03-06 03:54:20 +0000
commit05033eeff78fb95d94d8fae08b7f37adbd367757 (patch)
tree2a1da9c8c7e0033481c24b698f7760727932964c /net-www/boa
parentadded a don't worry blurb to the reconf section (Manifest recommit) (diff)
downloadgentoo-2-05033eeff78fb95d94d8fae08b7f37adbd367757.tar.gz
gentoo-2-05033eeff78fb95d94d8fae08b7f37adbd367757.tar.bz2
gentoo-2-05033eeff78fb95d94d8fae08b7f37adbd367757.zip
we license under gpl2, not gpl2 or later
Diffstat (limited to 'net-www/boa')
-rw-r--r--net-www/boa/files/boa.rc632
1 files changed, 16 insertions, 16 deletions
diff --git a/net-www/boa/files/boa.rc6 b/net-www/boa/files/boa.rc6
index 6eb6a558a002..960a30913bda 100644
--- a/net-www/boa/files/boa.rc6
+++ b/net-www/boa/files/boa.rc6
@@ -1,29 +1,29 @@
#!/sbin/runscript
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-www/boa/files/boa.rc6,v 1.3 2003/02/14 23:10:07 vapier Exp $
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-www/boa/files/boa.rc6,v 1.4 2004/03/06 03:54:20 vapier Exp $
depend() {
- need net
+ need net
}
checkconfig() {
- if [ ! -e /etc/boa/boa.conf ] ; then
- eerror "You need an /etc/boa/boa.conf to run Boa"
- eerror "There is a sample file in /usr/share/docs/boa"
- return 1
- fi
+ if [ ! -e /etc/boa/boa.conf ] ; then
+ eerror "You need an /etc/boa/boa.conf to run Boa"
+ eerror "There is a sample file in /usr/share/docs/boa"
+ return 1
+ fi
}
start() {
- checkconfig || return 1
- ebegin "Starting Boa"
- start-stop-daemon --quiet --start --exec /usr/sbin/boa
- eend $?
+ checkconfig || return 1
+ ebegin "Starting Boa"
+ start-stop-daemon --quiet --start --exec /usr/sbin/boa
+ eend $?
}
stop() {
- ebegin "Stopping Boa"
- start-stop-daemon --quiet --stop --name boa --exec /usr/sbin/boa
- eend $?
+ ebegin "Stopping Boa"
+ start-stop-daemon --quiet --stop --name boa --exec /usr/sbin/boa
+ eend $?
}