kemra102/puppet-auditd

init.pp line 432 check is wrong

Opened this issue · 1 comments

if $tcp_client_ports != undef {
validate_absolute_path($krb5_key_file)
}

I believe this should read

if $krb5_key_file != undef {
validate_absolute_path($krb5_key_file)
}

As it is it is validating krb5_key_file if tcp_client_ports is defined

This issue will be resolved by PR #62.