kemra102 / puppet-auditd

Manage the audit daemon and it's rules.
BSD 2-Clause "Simplified" License
14 stars 54 forks source link

init.pp line 432 check is wrong #58

Open AsherST opened 5 years ago

AsherST commented 5 years ago

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

samjmarshall commented 4 years ago

This issue will be resolved by PR #62.