freebsd-skq/etc/rc.d/rpcbind
gordon 008b9b25ad 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>
2002-08-14 05:44:32 +00:00

25 lines
371 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: rpcbind,v 1.6 2002/01/31 01:26:06 lukem Exp $
# $FreeBSD$
#
# PROVIDE: rpcbind
# REQUIRE: NETWORKING ntpdate syslogd named ppp
# KEYWORD: FreeBSD NetBSD
. /etc/rc.subr
name="rpcbind"
rcvar=`set_rcvar`
command="/usr/sbin/${name}"
case `${CMD_OSTYPE}` in
NetBSD)
pidfile="/var/run/${name}.pid"
;;
esac
load_rc_config $name
run_rc_command "$1"