File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 87
87
$dns_alt_names = [' puppet' ],
88
88
$digest_algorithm = $::puppet::params::digest_algorithm,
89
89
$generate_ssl_certs = true ,
90
- $strict_variables = false ,
90
+ $strict_variables = undef ,
91
91
) inherits puppet::params {
92
92
93
93
anchor { 'puppet::master::begin' : }
124
124
}
125
125
}
126
126
127
- validate_bool($strict_variables )
128
-
129
127
Anchor[' puppet::master::begin' ] ->
130
128
class {'puppet::passenger' :
131
129
puppet_passenger_port => $puppet_passenger_port ,
316
314
value => $digest_algorithm ,
317
315
}
318
316
319
- ini_setting {'puppetmasterstrictvariables' :
320
- ensure => present ,
321
- setting => ' strict_variables' ,
322
- value => $strict_variables ,
317
+ if $strict_variables != undef {
318
+ validate_bool($strict_variables )
319
+ ini_setting {'puppetmasterstrictvariables' :
320
+ ensure => present ,
321
+ setting => ' strict_variables' ,
322
+ value => $strict_variables ,
323
+ }
323
324
}
324
325
325
326
anchor { 'puppet::master::end' : }
You can’t perform that action at this time.
0 commit comments