588dcdedd7
needed to run publicfile services and provides NetBSD-style rc.d scripts, in the pkgsrc tradition of qmail-run and djbdns-run. By J. Lewis Muir, from wip.
60 lines
1 KiB
Bash
60 lines
1 KiB
Bash
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: pubfile.sh,v 1.1 2015/01/27 23:01:31 schmonz Exp $
|
|
#
|
|
# @PKGNAME@ master script for administrators to control publicfile
|
|
# services.
|
|
#
|
|
# For Red Hat chkconfig
|
|
# chkconfig: - 85 15
|
|
# description: DJB's publicfile HTTP and FTP services
|
|
#
|
|
|
|
# KEYWORD: nostart
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
. /etc/rc.subr
|
|
fi
|
|
|
|
rcd_dir=`@DIRNAME@ $0`
|
|
|
|
# NOTE: run_rc_command sets $rc_arg
|
|
#
|
|
forward_commands()
|
|
{
|
|
# Backward compat with NetBSD <1.6:
|
|
[ -z "$rc_arg" ] && rc_arg=$_arg
|
|
|
|
for file in $COMMAND_LIST; do
|
|
$rcd_dir/$file $rc_arg
|
|
done
|
|
}
|
|
|
|
reverse_commands()
|
|
{
|
|
# Backward compat with NetBSD <1.6:
|
|
[ -z "$rc_arg" ] && rc_arg=$_arg
|
|
|
|
REVCOMMAND_LIST=
|
|
for file in $COMMAND_LIST; do
|
|
REVCOMMAND_LIST="$file $REVCOMMAND_LIST"
|
|
done
|
|
for file in $REVCOMMAND_LIST; do
|
|
$rcd_dir/$file $rc_arg
|
|
done
|
|
}
|
|
|
|
COMMAND_LIST="pubftpd pubhttpd"
|
|
|
|
name="pubfile"
|
|
start_cmd="forward_commands"
|
|
stop_cmd="reverse_commands"
|
|
status_cmd="forward_commands"
|
|
extra_commands="status"
|
|
|
|
if [ -f /etc/rc.subr ]; then
|
|
run_rc_command "$1"
|
|
else
|
|
_arg="$1"
|
|
${start_cmd}
|
|
fi
|