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 20
20
# ['srv_domain'] - Domain to request the srv records
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
+ # ['listen'] - If puppet agent should listen for connections
23
24
#
24
25
# Actions:
25
26
# - Install and configures the puppet agent
52
53
$srv_domain = undef ,
53
54
$ordering = undef ,
54
55
$trusted_node_data = undef ,
56
+ $listen = false ,
55
57
) inherits puppet::params {
56
58
57
59
if ! defined (User[$::puppet::params::puppet_user ]) {
258
260
setting => ' pluginsync' ,
259
261
value => $pluginsync ,
260
262
}
263
+ ini_setting {'puppetagentlisten' :
264
+ ensure => present ,
265
+ setting => ' listen' ,
266
+ value => $listen ,
267
+ }
261
268
}
You can’t perform that action at this time.
0 commit comments