1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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.
This commit is contained in:
Mike Makonnen 2007-05-17 11:33:08 +00:00
parent c76ad7642f
commit 9cb24de6ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169654

View File

@ -9,9 +9,9 @@
. /etc/rc.subr
name="kerberos5"
load_rc_config $name
rcvar="kerberos5_server_enable"
command="${kerberos5_server}"
command_args="${kerberos5_server_flags} &"
command_args="--detach"
load_rc_config $name
command="${kerberos5_server}"
run_rc_command "$1"