Home | History | Annotate | Line # | Download | only in rc.d
wscons revision 1.1
      1 #!/bin/sh
      2 #
      3 # $NetBSD: wscons,v 1.1 2000/03/10 11:53:23 lukem Exp $
      4 #
      5 
      6 # PROVIDE: wscons
      7 # REQUIRE: systemfs
      8 
      9 . /etc/rc.subr
     10 . /etc/rc.conf
     11 
     12 name="wscons"
     13 start_cmd="do_wscons start"
     14 stop_cmd="do_wscons stop"
     15 
     16 do_wscons()
     17 {
     18 	if [ -f /etc/rc.wscons ]; then
     19 		set $1 ; . /etc/rc.wscons
     20 	fi
     21 }
     22 
     23 run_rc_command "$1"
     24