diff options
author | gordon <gordon@FreeBSD.org> | 2002-08-14 05:44:32 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2002-08-14 05:44:32 +0000 |
commit | 008b9b25ad2ce5dc5898051a4b7473c537da8d1b (patch) | |
tree | 74908b5b57031bedcbdeb25a3f0895ecc0a0e4b5 /etc/rc.d/keyserv | |
parent | 2f904c0a96257516a43311cdac6551876ee3c559 (diff) | |
download | FreeBSD-src-008b9b25ad2ce5dc5898051a4b7473c537da8d1b.zip FreeBSD-src-008b9b25ad2ce5dc5898051a4b7473c537da8d1b.tar.gz |
Clean up the scripts to use the new variables:
xntpd_* -> ntpd_*
portmap_* -> rpcbind_*
Also change single_mountd_enable -> mountd_enable
Changing the mountd flags brings us closer to NetBSD.
All of the old variable names are shimmed so you can continue to use the
old variable name.
Finally make /etc/rc.d/mountd no longer dependent on nfs as there are
(apparently) other consumers of mountd.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
Diffstat (limited to 'etc/rc.d/keyserv')
-rw-r--r-- | etc/rc.d/keyserv | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/etc/rc.d/keyserv b/etc/rc.d/keyserv index 2f46908..4419426 100644 --- a/etc/rc.d/keyserv +++ b/etc/rc.d/keyserv @@ -16,7 +16,18 @@ name="keyserv" rcvar=`set_rcvar` command="/usr/sbin/${name}" -required_vars="portmap_enable" +start_precmd="keyserv_prestart" + +keyserv_prestart() +{ + if ! checkyesno rpcbind_enable && \ + ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1 + then + force_depend rpcbind || return 1 + fi + + return 0 +} load_rc_config $name run_rc_command "$1" |