Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
Fix for splunk_os_user not being honored if set (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorritfolmer authored Jul 25, 2018
1 parent 4a99437 commit 48c373c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,13 @@
}
if $splunk_os_user == undef {
$real_splunk_os_user = 'splunk'
} else {
$real_splunk_os_user = $splunk_os_user
}
if $splunk_os_group == undef {
$real_splunk_os_group = 'splunk'
} else {
$real_splunk_os_group = $splunk_os_group
}
$real_splunk_dir_mode = '0700'
$real_splunk_file_mode = '0600'
Expand Down

0 comments on commit 48c373c

Please sign in to comment.