We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4acfa3b + 655d966 commit 21a7191Copy full SHA for 21a7191
manifests/params.pp
@@ -18,9 +18,11 @@
18
$disable_auth = false
19
$broadcastclient = false
20
21
-# On virtual machines allow large clock skews.
22
- $panic = str2bool($::is_virtual) ? {
23
- 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.
24
+ $panic = "x${::is_virtual}" ? {
25
+ 'xtrue' => false,
26
default => true,
27
}
28
0 commit comments