Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 422440 Details for
Bug 571448
www-servers/boa-0.94.14_rc21-r1 fails to stop
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Adjusted init.d script
boa (text/plain), 865 bytes, created by
georg
on 2016-01-10 08:23:28 UTC
(
hide
)
Description:
Adjusted init.d script
Filename:
MIME Type:
Creator:
georg
Created:
2016-01-10 08:23:28 UTC
Size:
865 bytes
patch
obsolete
>#!/sbin/runscript ># Copyright 1999-2004 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Id$ > ># NB: Standard config is in /etc/boa/boa.conf ># NB: Arguments to pass to boa are in /etc/conf.d/boa > >pidfile="/run/boa.pid" > >depend() { > need net >} > >checkconfig() { > if [ -e /etc/conf.d/boa ] && [ -n "${BOA_OPTS}" ]; then > SR=`echo ${BOA_OPTS} | awk '{ FS = " " } { print $2 }'` > else > SR=/etc/boa > fi > > if [ ! -e ${SR}/boa.conf ] ; then > eerror "You need a ${SR}/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 --pidfile "$pidfile" --exec /usr/sbin/boa -- ${BOA_OPTS} > eend $? >} > >stop() { > ebegin "Stopping Boa" > start-stop-daemon --quiet --stop --oknodo --pidfile "$pidfile" > eend $? >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 571448
: 422440 |
423538
|
424104
|
424106
|
424108