diff --git a/manifests/params.pp b/manifests/params.pp index 6aeb0fe3a..1314ef923 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -18,9 +18,11 @@ $disable_auth = false $broadcastclient = false -# On virtual machines allow large clock skews. - $panic = str2bool($::is_virtual) ? { - true => false, + # On virtual machines allow large clock skews. + # TODO Change this to str2bool($::is_virtual) when stdlib dependency is >= 4.0.0 + # NOTE The "x${var}" is just to avoid lint quoted variable warning. + $panic = "x${::is_virtual}" ? { + 'xtrue' => false, default => true, }