File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 18
18
# ['pluginsync'] - Whethere to have pluginsync
19
19
# ['use_srv_records'] - Whethere to use srv records
20
20
# ['srv_domain'] - Domain to request the srv records
21
+ # ['ordering'] - The way the agent processes resources. New feature in puppet 3.3.0
21
22
#
22
23
# Actions:
23
24
# - Install and configures the puppet agent
47
48
$report = true ,
48
49
$pluginsync = true ,
49
50
$use_srv_records = false ,
50
- $srv_domain = undef
51
+ $srv_domain = undef ,
52
+ $ordering = undef
51
53
) inherits puppet::params {
52
54
53
55
if ! defined (User[$::puppet::params::puppet_user ]) {
186
188
}
187
189
}
188
190
191
+ if $ordering
192
+ {
193
+ ini_setting {'puppetagentordering' :
194
+ ensure => present ,
195
+ setting => ' ordering' ,
196
+ value => $ordering ,
197
+ }
198
+ }
199
+
189
200
ini_setting {'puppetagentenvironment' :
190
201
ensure => present ,
191
202
setting => ' environment' ,
You can’t perform that action at this time.
0 commit comments