1c57323789
have been converted to USE_BUILDLINK2.
56 lines
910 B
Bash
56 lines
910 B
Bash
#!/bin/sh
|
|
#
|
|
# $NetBSD: samba.sh,v 1.8 2002/08/25 21:50:15 jlam Exp $
|
|
#
|
|
# 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="nmbd smbd"
|
|
|
|
name="samba"
|
|
start_cmd="forward_commands"
|
|
stop_cmd="reverse_commands"
|
|
reload_cmd="forward_commands"
|
|
status_cmd="forward_commands"
|
|
extra_commands="reload status"
|
|
|
|
if [ -f /etc/rc.subr ]
|
|
then
|
|
run_rc_command "$1"
|
|
else
|
|
@ECHO@ -n ' ${name}'
|
|
_arg="$1"
|
|
${start_cmd}
|
|
fi
|