We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: