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
Bug: Changing the splunk user from the default (root on Linux) to another user will result in failures when the config files are ensured.
splunk
root
To reproduce, set splunk::params::splunk_user: 'splunk' #or any group/user for this matter
splunk::params::splunk_user: 'splunk' #or any group/user for this matter
Fix: We should optionally manage the splunk user/group and default management to false:
params.pp:
params.pp
Boolean $manage_splunk_user = false,
install.pp:
install.pp
if $splunk::enterprise::manage_splunk_user { group { $splunk::enterprise::splunk_user: ensure => 'present', require => Package[$splunk::enterprise::enterprise_package_name], } user { $splunk::enterprise::splunk_user: ensure => 'present', require => Group[$splunk::enterprise::splunk_user], } }
I can have a PR staged in short order
The text was updated successfully, but these errors were encountered:
I'll re-open if/when I can better define the need for this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug: Changing the
splunk
user from the default (root
on Linux) to another user will result in failures when the config files are ensured.To reproduce, set
splunk::params::splunk_user: 'splunk' #or any group/user for this matter
Fix: We should optionally manage the
splunk
user/group and default management to false:params.pp
:install.pp
:I can have a PR staged in short order
The text was updated successfully, but these errors were encountered: