Home | History | Annotate | Line # | Download | only in rc.d
altqd revision 1.1
      1  1.1  thorpej #!/bin/sh
      2  1.1  thorpej #
      3  1.1  thorpej # $NetBSD: altqd,v 1.1 2001/04/05 23:55:00 thorpej Exp $
      4  1.1  thorpej #
      5  1.1  thorpej 
      6  1.1  thorpej # PROVIDE: altqd
      7  1.1  thorpej # REQUIRE: network mountcritlocal dhclient
      8  1.1  thorpej # KEYWORD: shutdown
      9  1.1  thorpej 
     10  1.1  thorpej . /etc/rc.subr
     11  1.1  thorpej 
     12  1.1  thorpej name="altqd"
     13  1.1  thorpej rcvar=$name
     14  1.1  thorpej command="/usr/sbin/${name}"
     15  1.1  thorpej pidfile="/var/run/${name}.pid"
     16  1.1  thorpej required_files="/etc/altq.conf"
     17  1.1  thorpej extra_commands="reload"
     18  1.1  thorpej 
     19  1.1  thorpej load_rc_config $name
     20  1.1  thorpej run_rc_command "$1"
     21