Home | History | Annotate | Line # | Download | only in rc.d
mountcritremote revision 1.4
      1 #!/bin/sh
      2 #
      3 # $NetBSD: mountcritremote,v 1.4 2001/02/28 17:19:42 lukem Exp $
      4 #
      5 
      6 # PROVIDE: mountcritremote
      7 # REQUIRE: NETWORK root mountcritlocal
      8 
      9 . /etc/rc.subr
     10 
     11 #	Mount critical filesystems that may be remote.
     12 #	(as specified in $critical_filesystems)
     13 #	This usually includes /usr.
     14 #
     15 name="mountcritremote"
     16 start_cmd="mount_critical_filesystems remote"
     17 stop_cmd=":"
     18 
     19 load_rc_config $name
     20 run_rc_command "$1"
     21