Skip to content

Commit 7add721

Browse files
authored
Merge pull request #279 from dave-pollock/add-default-host-override
Add ability to override default-host configuration
2 parents 12f57f9 + 08a18f5 commit 7add721

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

manifests/params.pp

+5-1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@
8989
# @param enterprise_installdir
9090
# Optional directory in which to install and manage Splunk Enterprise
9191
#
92+
# @param default_host
93+
# The host property in inputs.conf. Defaults to the server's hostname.
94+
#
9295
class splunk::params (
9396
String[1] $version = '7.2.4.2',
9497
String[1] $build = 'fb30470262e3',
@@ -103,6 +106,7 @@
103106
'windows' => 'Administrator',
104107
default => 'root'
105108
},
109+
String[1] $default_host = $facts['clientcert'],
106110
) {
107111
# Based on the small number of inputs above, we can construct sane defaults
108112
# for pretty much everything else.
@@ -272,7 +276,7 @@
272276
'default_host' => {
273277
section => 'default',
274278
setting => 'host',
275-
value => $facts['clientcert'],
279+
value => $default_host,
276280
tag => 'splunk_forwarder',
277281
},
278282
}

0 commit comments

Comments
 (0)