1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
#!/bin/sh
#
#
# PROVIDE: yaws
# REQUIRE: DAEMON
#
# You will need to set some variables in /etc/rc.conf to start Yaws:
#
# yaws=YES
# yaws_flags=""
# yaws_id=""
#
if [ -f /etc/rc.subr ]; then
. /etc/rc.subr
fi
name="yaws"
rcvar=$name
yaws_command="%bindir%/${name}"
required_files="%etcdir%/yaws/yaws.conf"
start_cmd="yaws_start"
stop_cmd="yaws_stop"
status_cmd="yaws_status"
reload_cmd="yaws_reload"
extra_commands="reload status"
if [ -n "$yaws_id" ]
then
yaws_id="--id $yaws_id"
fi
: ${yaws_flags:=--heart}
yaws_start() {
echo -n "Starting Yaws: "
$yaws_command $yaws_id $yaws_flags --daemon --conf %etcdir%/yaws/yaws.conf >/dev/null
$yaws_command $yaws_id --wait-started=10 >/dev/null
RETVAL=$?
if [ $RETVAL = 0 ]; then
echo "OK"
else
echo "FAILED"
fi
return $RETVAL
}
yaws_stop() {
echo -n "Stopping Yaws: "
$yaws_command $yaws_id --stop >/dev/null
$yaws_command $yaws_id --wait-stopped=10 >/dev/null
RETVAL=$?
if [ $RETVAL = 0 ]; then
echo "OK"
else
echo "FAILED"
fi
return $RETVAL
}
yaws_status() {
$yaws_command $yaws_id --status >/dev/null
RETVAL=$?
if [ $RETVAL = 0 ]; then
echo "Yaws is running"
else
echo "Yaws is stopped"
fi
return $RETVAL
}
yaws_reload() {
echo -n "Reloading Yaws: "
$yaws_command $yaws_id --hup >/dev/null
RETVAL=$?
if [ $RETVAL = 0 ]; then
echo "OK"
else
echo "FAILED"
fi
return $RETVAL
}
if [ -f /etc/rc.subr -a -f /etc/rc.conf ]; then
load_rc_config $name
run_rc_command "$1"
else
yaws_start
fi
|