diff options
author | Chris Moerz <freebsd@ny-central.org> | 2024-05-21 11:25:19 +0000 |
---|---|---|
committer | Fernando Apesteguía <fernape@FreeBSD.org> | 2024-05-21 11:33:54 +0000 |
commit | 09d69dc84a2c5702b7277af9fc1fb64cb23a7773 (patch) | |
tree | 6ac0fc98702fbdf48273e54425ddb7be35397cde | |
parent | 9812abdf19ff3a9ce3e843a0a4d5364b023fe383 (diff) |
[hb][security]: Fix MIT kdc command
Fix kdc command in code snippet.
PR: 278640
Reported by: Jürgen Weber <weberbug@gmx.de>
Differential Revision: https://reviews.freebsd.org/D45255
-rw-r--r-- | documentation/content/en/books/handbook/security/_index.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/content/en/books/handbook/security/_index.adoc b/documentation/content/en/books/handbook/security/_index.adoc index 9f7d1566be..e746ff1314 100644 --- a/documentation/content/en/books/handbook/security/_index.adoc +++ b/documentation/content/en/books/handbook/security/_index.adoc @@ -1478,7 +1478,7 @@ When using MIT Kerberos as a KDC on FreeBSD, execute the following commands to a [source,shell] .... -# sysrc kdc_program="/usr/local/sbin/kdc" +# sysrc kdc_program="/usr/local/sbin/krb5kdc" # sysrc kadmind_program="/usr/local/sbin/kadmind" # sysrc kdc_flags="" # sysrc kdc_enable="YES" |