summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMichael Moll <kvedulv@kvedulv.de>2013-07-13 21:21:02 +0200
committerMichael Moll <kvedulv@kvedulv.de>2013-07-13 22:37:16 +0200
commit83b388217b899e5584a0109189d7385fb6428890 (patch)
tree07132df23fb8f1d1e5d47c6f392fed86bf942764 /manifests
parent811f0efae125360edd9c7c414b89a755680588b0 (diff)
fix panic parameter in virtual machines
As facts are always strings, quoting is required here.
Diffstat (limited to 'manifests')
-rw-r--r--manifests/params.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 3fd8eaf..45551a8 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -9,7 +9,7 @@ class ntp::params {
# On virtual machines allow large clock skews.
$panic = $::is_virtual ? {
- true => false,
+ 'true' => false,
default => true,
}