diff options
author | Rob Holland <tigger@gentoo.org> | 2005-07-28 14:24:36 +0000 |
---|---|---|
committer | Rob Holland <tigger@gentoo.org> | 2005-07-28 14:24:36 +0000 |
commit | 3156b7e47a6801f7fc120566d5ee0d080a279a1f (patch) | |
tree | a4b008b13e9bb0d01b78f5d0525f722e606d7c91 | |
parent | Fix qt dep per bug #100235 (diff) | |
download | gentoo-2-3156b7e47a6801f7fc120566d5ee0d080a279a1f.tar.gz gentoo-2-3156b7e47a6801f7fc120566d5ee0d080a279a1f.tar.bz2 gentoo-2-3156b7e47a6801f7fc120566d5ee0d080a279a1f.zip |
fix init script
-rw-r--r-- | www-servers/boa/files/boa.rc6 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www-servers/boa/files/boa.rc6 b/www-servers/boa/files/boa.rc6 index e74518396c45..7e583925a4f1 100644 --- a/www-servers/boa/files/boa.rc6 +++ b/www-servers/boa/files/boa.rc6 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/boa/files/boa.rc6,v 1.1 2004/08/08 11:09:49 stuart Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/boa/files/boa.rc6,v 1.2 2005/07/28 14:24:36 tigger Exp $ # NB: Standard config is in /etc/boa/boa.conf # NB: Arguments to pass to boa are in /etc/conf.d/boa @@ -11,7 +11,7 @@ depend() { } checkconfig() { - if [ -e /etc/conf.d/boa ]; then + if [ -e /etc/conf.d/boa ] && [ -n "${BOA_OPTS}" ]; then SR=`echo ${BOA_OPTS} | awk '{ FS = " " } { print $2 }'` else SR=/etc/boa |