freebsd-dev/etc/rc.d/kerberos
Mike Makonnen 9cb24de6ed o Use the --detach option to kdc(8) instead of using the shell
background operator '&'.

  PR: conf/102722

o No need to include $kerberos5_server_flags in $command_args as
  rc.subr(8) will take care of this.
2007-05-17 11:33:08 +00:00

18 lines
231 B
Bash

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: kerberos
# REQUIRE: NETWORKING
. /etc/rc.subr
name="kerberos5"
rcvar="kerberos5_server_enable"
command_args="--detach"
load_rc_config $name
command="${kerberos5_server}"
run_rc_command "$1"