summaryrefslogtreecommitdiff
path: root/templates/ntp.conf.freebsd.erb
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2013-07-31 10:48:09 -0700
committerAshley Penney <ashley.penney@puppetlabs.com>2013-07-31 10:48:09 -0700
commite3feec2486002038b7d960e78a68cab747f2e731 (patch)
tree087fd6eedad720c6b762da3a28c65ae6a9ee398b /templates/ntp.conf.freebsd.erb
parentc5408ae4b17bc3b395b13d10c9473e15661d2d38 (diff)
parentef93b7e5db9d495b9437dfb7ba9d9bbfd966949e (diff)
Merge pull request #80 from apenney/single_template
Merge all the templates together, add a few new features to help with the merge.
Diffstat (limited to 'templates/ntp.conf.freebsd.erb')
-rw-r--r--templates/ntp.conf.freebsd.erb29
1 files changed, 0 insertions, 29 deletions
diff --git a/templates/ntp.conf.freebsd.erb b/templates/ntp.conf.freebsd.erb
deleted file mode 100644
index 12be09c..0000000
--- a/templates/ntp.conf.freebsd.erb
+++ /dev/null
@@ -1,29 +0,0 @@
-#
-# $FreeBSD: release/9.0.0/etc/ntp.conf 195652 2009-07-13 05:51:33Z dwmalone $
-#
-# Default NTP servers for the FreeBSD operating system.
-#
-# Don't forget to enable ntpd in /etc/rc.conf with:
-# ntpd_enable="YES"
-#
-# The driftfile is by default /var/db/ntpd.drift, check
-# /etc/defaults/rc.conf on how to change the location.
-#
-#
-# See http://www.pool.ntp.org/ for details. Note, the pool encourages
-# users with a static IP and good upstream NTP servers to add a server
-# to the pool. See http://www.pool.ntp.org/join.html if you are interested.
-#
-# The option `iburst' is used for faster initial synchronisation.
-# The option `maxpoll 9' is used to prevent PLL/FLL flipping on FreeBSD.
-#
-# Managed by puppet class { 'ntp': servers => [ ... ] }
-<% if @panic == false -%>
-# Keep ntpd from panicking in the event of a large clock skew
-# when a VM guest is suspended and resumed.
-tinker panic 0
-<% end -%>
-
-<% [@servers].flatten.each do |server| -%>
-server <%= server %>
-<% end -%>