Home | History | Annotate | Line # | Download | only in rc.d
routed revision 1.4
      1  1.1  lukem #!/bin/sh
      2  1.1  lukem #
      3  1.4  lukem # $NetBSD: routed,v 1.4 2000/05/13 08:45:09 lukem Exp $
      4  1.1  lukem #
      5  1.1  lukem 
      6  1.1  lukem # PROVIDE: routed
      7  1.2  lukem # REQUIRE: DAEMON gated
      8  1.1  lukem 
      9  1.1  lukem . /etc/rc.subr
     10  1.1  lukem 
     11  1.1  lukem name="routed"
     12  1.3  enami command="/sbin/${name}"
     13  1.1  lukem start_precmd="routed_precmd"
     14  1.1  lukem 
     15  1.1  lukem routed_precmd()
     16  1.1  lukem {
     17  1.1  lukem 	if checkyesno gated && checkyesno routed; then
     18  1.1  lukem 		warn "gated and routed both requested to be run: only running gated."
     19  1.1  lukem 		return 1
     20  1.1  lukem 	fi
     21  1.1  lukem }
     22  1.1  lukem 
     23  1.4  lukem load_rc_config $name
     24  1.1  lukem run_rc_command "$1"
     25