Remove RC scripts for stuff we have don't have in our tree.
[dragonfly/netmp.git] / etc / rc.d / mountd
blob151db7b8d2dfb6a74d6e7f51b6b457fc3589983f
1 #!/bin/sh
3 # $NetBSD: mountd,v 1.11 2002/01/31 01:26:06 lukem Exp $
4 # $FreeBSD: src/etc/rc.d/mountd,v 1.9 2002/10/12 10:31:31 schweikh Exp $
5 # $DragonFly: src/etc/rc.d/mountd,v 1.5 2005/04/22 08:30:25 joerg Exp $
8 # PROVIDE: mountd
9 # REQUIRE: NETWORKING mountcritremote nfsserver rpcbind quota
10 # KEYWORD: DragonFly
12 . /etc/rc.subr
14 name="mountd"
15 rcvar=`set_rcvar`
16 command="/sbin/${name}"
17 required_files="/etc/exports"
18 start_precmd="mountd_precmd"
19 extra_commands="reload"
21 mountd_precmd()
23 if ! checkyesno rpcbind_enable && \
24 ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
25 then
26 force_depend rpcbind || return 1
28 # mountd flags will differ depending on rc.conf settings
30 case ${nfs_server_enable} in
31 [Yy][Ee][Ss])
32 if checkyesno weak_mountd_authentication; then
33 mountd_flags="${mountd_flags} -n"
37 if checkyesno mountd_enable; then
38 checkyesno weak_mountd_authentication && mountd_flags="-n"
40 esac
41 rm -f /var/db/mountdtab
42 ( umask 022 ; > /var/db/mountdtab )
43 return 0
46 load_rc_config $name
47 run_rc_command "$1"