From 83b388217b899e5584a0109189d7385fb6428890 Mon Sep 17 00:00:00 2001 From: Michael Moll Date: Sat, 13 Jul 2013 21:21:02 +0200 Subject: fix panic parameter in virtual machines As facts are always strings, quoting is required here. --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'manifests') 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, } -- cgit v1.2.3