21 lines
410 B
Bash
Executable File
21 lines
410 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: mountcritremote,v 1.4 2001/02/28 17:19:42 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: mountcritremote
|
|
# REQUIRE: NETWORK root mountcritlocal
|
|
|
|
. /etc/rc.subr
|
|
|
|
# Mount critical filesystems that may be remote.
|
|
# (as specified in $critical_filesystems)
|
|
# This usually includes /usr.
|
|
#
|
|
name="mountcritremote"
|
|
start_cmd="mount_critical_filesystems remote"
|
|
stop_cmd=":"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|