puppet-splunk
puppet-splunk copied to clipboard
/opt/splunk/etc/passwd wrong permissions
on enterprise/password/manage.pp is defined the following:
file { $password_config_file: ensure => file, owner => $splunk_user, group => $splunk_user, content => $password_content, require => File[$secret_file], }
It should define also the mode:
mode = > '0600'
Currently it is setting the permissions on that file to '0644' which is not good because in that file is the password.