NetBSD/etc/rc.d/amd
lukem d7d9b87b1c Complain if $amd_master is set. This variable was used in 1.5 and prior
releases, but has been ignored since an am-utils update six months ago.
This fixes [misc/11971] submitted by Jun-ichiro itojun Hagino.  (Note that
$amd_flags is still supported, contrary to what the PR says).
2001-06-17 01:05:40 +00:00

31 lines
509 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: amd,v 1.8 2001/06/17 01:05:40 lukem Exp $
#
# PROVIDE: amd
# REQUIRE: rpcbind mountall ypbind
. /etc/rc.subr
name="amd"
rcvar=$name
command="/usr/sbin/${name}"
start_precmd="amd_precmd"
load_rc_config $name
command_args='-p -a '$amd_dir' -F /etc/amd.conf >/var/run/amd.pid'
required_files="/etc/amd.conf"
required_dirs="$amd_dir"
required_vars="rpcbind"
amd_precmd()
{
if [ -n "$amd_master" ]; then
warn "\$amd_master has been deprecated."
return 1
fi
}
run_rc_command "$1"