From afad76ee76d3a58cf84a1bc6fb12c55552bc5563 Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 16 Jun 2001 07:16:14 +0000 Subject: Import the NetBSD 1.5 RC system. Note that `rc' and `rc.shutdown' could not be imported because we already have files with those names. --- etc/rc.d/mountd | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 etc/rc.d/mountd (limited to 'etc/rc.d/mountd') diff --git a/etc/rc.d/mountd b/etc/rc.d/mountd new file mode 100755 index 0000000..d1a64bf --- /dev/null +++ b/etc/rc.d/mountd @@ -0,0 +1,26 @@ +#!/bin/sh +# +# $NetBSD: mountd,v 1.6 2000/06/02 22:54:11 fvdl Exp $ +# + +# PROVIDE: mountd +# REQUIRE: NETWORK mountall beforemountlkm rpcbind quota + +. /etc/rc.subr + +name="mountd" +rcvar="nfs_server" +command="/usr/sbin/${name}" +required_files="/etc/exports" +start_precmd="mountd_precmd" +extra_commands="reload" + +mountd_precmd() +{ + rm -f /var/db/mountdtab + echo -n > /var/db/mountdtab + return 0 +} + +load_rc_config $name +run_rc_command "$1" -- cgit v1.1