summaryrefslogtreecommitdiff
path: root/etc/rc.d/mountd
blob: 3d3c020fc2fb9e521fe1f322149d63623164e7a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# $OpenBSD: mountd,v 1.4 2013/01/26 08:00:11 ajacoutot Exp $

daemon="/sbin/mountd"

. /etc/rc.d/rc.subr

rc_stop=NO

rc_pre() {
	[ -s /etc/exports ] && grep -qv '^#' /etc/exports && \
		rm -f /var/db/mountdtab && \
		echo -n > /var/db/mountdtab
}

rc_cmd $1