mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 06:07:31 -04:00
Note that `rc' and `rc.shutdown' could not be imported because we already have files with those names.
18 lines
275 B
Bash
Executable file
18 lines
275 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $NetBSD: kdc,v 1.2 2000/09/19 13:04:38 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: kdc
|
|
# REQUIRE: NETWORK
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="kdc"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/krb5.conf"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|