From 1aa00ce8eaabe53e13f72316b722a712841d553c Mon Sep 17 00:00:00 2001 From: Matt Summers Date: Thu, 11 Oct 2012 14:28:43 +0100 Subject: Fix is_virtual check in ntp.conf templates is_virtual fact must be checked using a string comparison. The previous logic would resolve true if the is_virtual fact was defined. This meant that on servers where is_virtual was defined as "false", the vm-only snippet was still inserted into the template. --- templates/ntp.conf.freebsd.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/ntp.conf.freebsd.erb') diff --git a/templates/ntp.conf.freebsd.erb b/templates/ntp.conf.freebsd.erb index 954a2a8..7d08644 100644 --- a/templates/ntp.conf.freebsd.erb +++ b/templates/ntp.conf.freebsd.erb @@ -18,7 +18,7 @@ # The option `maxpoll 9' is used to prevent PLL/FLL flipping on FreeBSD. # # Managed by puppet class { "ntp": servers => [ ... ] } -<% if @is_virtual -%> +<% if @is_virtual == "true" -%> # Keep ntpd from panicking in the event of a large clock skew # when a VM guest is suspended and resumed. -- cgit v1.2.3