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).
This commit is contained in:
lukem 2001-06-17 01:05:40 +00:00
parent 24c92d43e5
commit d7d9b87b1c

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: amd,v 1.7 2000/11/21 12:20:12 veego Exp $
# $NetBSD: amd,v 1.8 2001/06/17 01:05:40 lukem Exp $
#
# PROVIDE: amd
@ -11,6 +11,7 @@
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'
@ -18,4 +19,12 @@ 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"