Home | History | Annotate | Line # | Download | only in rc.d
kdc revision 1.1.2.2
      1  1.1.2.2  thorpej #!/bin/sh
      2  1.1.2.2  thorpej #
      3  1.1.2.2  thorpej # $NetBSD: kdc,v 1.1.2.2 2000/08/06 21:39:04 thorpej Exp $
      4  1.1.2.2  thorpej #
      5  1.1.2.2  thorpej 
      6  1.1.2.2  thorpej # PROVIDE: kdc
      7  1.1.2.2  thorpej # REQUIRE: mountcritremote
      8  1.1.2.2  thorpej 
      9  1.1.2.2  thorpej . /etc/rc.subr
     10  1.1.2.2  thorpej 
     11  1.1.2.2  thorpej name="kdc"
     12  1.1.2.2  thorpej command="/usr/sbin/${name}"
     13  1.1.2.2  thorpej pidfile="/var/run/${name}.pid"
     14  1.1.2.2  thorpej required_files="/etc/krb5.conf"
     15  1.1.2.2  thorpej 
     16  1.1.2.2  thorpej load_rc_config $name
     17  1.1.2.2  thorpej run_rc_command "$1"
     18