Skip to content

Commit

Permalink
Merge pull request #191 from ralfbosz/issue/186
Browse files Browse the repository at this point in the history
This commit fixes the error in startup 7.1.x
  • Loading branch information
bastelfreak authored Aug 19, 2018
2 parents bbc320e + de60dbd commit e81fb96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifests/platform/posix.pp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Commands to run to enable the SplunkUniversalForwarder
@exec { 'license_splunkforwarder':
path => "${splunk::params::forwarder_dir}/bin",
command => 'splunk start --accept-license --answer-yes',
command => 'splunk start --accept-license --answer-yes --no-prompt',
user => $splunk_user,
creates => '/opt/splunkforwarder/etc/auth/server.pem',
timeout => 0,
Expand All @@ -46,7 +46,7 @@
# Commands to run to enable full Splunk
@exec { 'license_splunk':
path => "${splunk::params::server_dir}/bin",
command => 'splunk start --accept-license --answer-yes',
command => 'splunk start --accept-license --answer-yes --no-prompt',
user => $splunk_user,
creates => '/opt/splunk/etc/auth/splunk.secret',
timeout => 0,
Expand Down

0 comments on commit e81fb96

Please sign in to comment.