Only use the strict variables workaround if using strict variables
This should avoid issues with defined on earlier versions of puppet
This commit is contained in:
parent
424b7540bf
commit
3838c666f5
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ class apt::params {
|
|||
|
||||
# prior to puppet 3.5.0, defined couldn't test if a variable was defined
|
||||
# strict variables wasn't added until 3.5.0, so this should be fine.
|
||||
if versioncmp($::puppetversion, '3.5.0') < 0 {
|
||||
if ! $::settings::strict_variables {
|
||||
$xfacts = {
|
||||
'lsbdistcodename' => $::lsbdistcodename,
|
||||
'lsbdistrelease' => $::lsbdistrelease,
|
||||
|
|
Loading…
Reference in a new issue