88f7d3e22b
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>
52 lines
1.0 KiB
Bash
Executable File
52 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: mountd,v 1.11 2002/01/31 01:26:06 lukem Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: mountd
|
|
# REQUIRE: NETWORKING mountall beforemountlkm nfsserver rpcbind quota
|
|
# KEYWORD: FreeBSD NetBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="mountd"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
required_files="/etc/exports"
|
|
start_precmd="mountd_precmd"
|
|
extra_commands="reload"
|
|
|
|
mountd_precmd()
|
|
{
|
|
case `${CMD_OSTYPE}` in
|
|
FreeBSD)
|
|
if ! checkyesno rpcbind_enable && \
|
|
! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
|
|
then
|
|
force_depend rpcbind || return 1
|
|
fi
|
|
|
|
# mountd flags will differ depending on rc.conf settings
|
|
#
|
|
case ${nfs_server_enable} in
|
|
[Yy][Ee][Ss])
|
|
if checkyesno weak_mountd_authentication ; then
|
|
mountd_flags="${mountd_flags} -n"
|
|
fi
|
|
;;
|
|
*)
|
|
if checkyesno single_mountd_enable ; then
|
|
checkyesno weak_mountd_authentication && mountd_flags="-n"
|
|
fi
|
|
esac
|
|
;;
|
|
esac
|
|
rm -f /var/db/mountdtab
|
|
( umask 022 ; > /var/db/mountdtab )
|
|
return 0
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|