mountd revision 1.2
1#!/bin/sh 2# 3# $NetBSD: mountd,v 1.2 2000/03/11 17:29:50 veego Exp $ 4# 5 6# PROVIDE: mountd 7# REQUIRE: mountall beforemountlkm network portmap 8 9. /etc/rc.subr 10. /etc/rc.conf 11 12name="mountd" 13rcvar="nfs_server" 14command="/usr/sbin/${name}" 15required_files="/etc/exports" 16start_precmd="mountd_precmd" 17 18mountd_precmd() 19{ 20 rm -f /var/db/mountdtab 21 echo -n > /var/db/mountdtab 22 return 0 23} 24 25run_rc_command "$1" "reload" 26