File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 21
21
# ['ordering'] - The way the agent processes resources. New feature in puppet 3.3.0
22
22
# ['trusted_node_data'] - Enable the trusted facts hash
23
23
# ['listen'] - If puppet agent should listen for connections
24
+ # ['reportserver'] - The server to send transaction reports to.
24
25
#
25
26
# Actions:
26
27
# - Install and configures the puppet agent
54
55
$ordering = undef ,
55
56
$trusted_node_data = undef ,
56
57
$listen = false ,
58
+ $reportserver = undef ,
57
59
) inherits puppet::params {
58
60
59
61
if ! defined (User[$::puppet::params::puppet_user ]) {
265
267
setting => ' listen' ,
266
268
value => $listen ,
267
269
}
270
+ ini_setting {'puppetagentreportserver' :
271
+ ensure => present ,
272
+ setting => ' reportserver' ,
273
+ value => $reportserver ,
274
+ }
268
275
}
You can’t perform that action at this time.
0 commit comments