mirror of
https://github.com/CISOfy/lynis.git
synced 2026-03-11 08:55:28 +00:00
Fix #1562
kadmin.local binary might exist, even though Kerberos is not configured and /etc/krb5.conf does not exist.
This commit is contained in:
parent
f08cde63d6
commit
d8844925e3
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ InsertSection "${SECTION_KERBEROS}"
|
|||
PREQS_MET="YES"
|
||||
# Make sure krb5 debugging doesn't mess up the output
|
||||
unset KRB5_TRACE
|
||||
PRINCS="$(${KADMINLOCALBINARY} listprincs | ${TRBINARY:-tr} '\n' ' ')"
|
||||
PRINCS="$(${KADMINLOCALBINARY} listprincs 2>/dev/null | ${TRBINARY:-tr} '\n' ' ')"
|
||||
if [ -z "${PRINCS}" ]
|
||||
then
|
||||
PREQS_MET="NO"
|
||||
|
|
|
|||
Loading…
Reference in a new issue