575ce29b37
Bump revision. --HG-- extra : convert_revision : 8ae516e972fa5ba22be2d5ef80194bf08ff921fa
22 lines
303 B
Bash
Executable File
22 lines
303 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# PROVIDE: mountd
|
|
# REQUIRE: portmap nfslock
|
|
# KEYWORD: shutdown
|
|
|
|
$_rc_subr_loaded . /etc/rc.subr
|
|
|
|
name="mountd"
|
|
rcvar=$name
|
|
command="/usr/sbin/rpc.mountd"
|
|
procname=${command}
|
|
start_precmd="mountd_precmd"
|
|
|
|
mountd_precmd()
|
|
{
|
|
/usr/sbin/exportfs -r
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|