008b9b25ad
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>
25 lines
371 B
Bash
Executable File
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"
|