xref: /netbsd/etc/rc.d/mountcritremote (revision 6550d01e)
1#!/bin/sh
2#
3# $NetBSD: mountcritremote,v 1.8 2004/08/13 18:08:03 mycroft Exp $
4#
5
6# PROVIDE: mountcritremote
7# REQUIRE: NETWORKING root mountcritlocal
8
9$_rc_subr_loaded . /etc/rc.subr
10
11name="mountcritremote"
12start_cmd="mountcritremote_start"
13stop_cmd=":"
14
15mountcritremote_start()
16{
17	#	Mount critical filesystems that may be `remote'.
18	#	(as specified in $critical_filesystems_remote)
19	#	This usually includes /usr.
20	#
21	mount_critical_filesystems remote
22
23}
24
25load_rc_config $name
26run_rc_command "$1"
27