NetBSD/etc/rc.d/mountcritremote

27 lines
498 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: mountcritremote,v 1.8 2004/08/13 18:08:03 mycroft Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: mountcritremote
# REQUIRE: NETWORKING root mountcritlocal
2000-03-10 14:53:23 +03:00
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
name="mountcritremote"
start_cmd="mountcritremote_start"
2000-03-10 14:53:23 +03:00
stop_cmd=":"
mountcritremote_start()
{
# Mount critical filesystems that may be `remote'.
# (as specified in $critical_filesystems_remote)
# This usually includes /usr.
#
mount_critical_filesystems remote
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"