summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2013-07-10 16:08:58 -0400
committerAshley Penney <ashley.penney@puppetlabs.com>2013-07-10 16:08:58 -0400
commitd370d13bee49e73afc1d74f6c6019dda2658eeb4 (patch)
treeff95ef40ee51fc29ff90eab2f6a15f41fa5a05ae
parent81b8855e9ac9104cba968bd0d749c5b40a2eb29b (diff)
Fix examples to use single quotes.
-rw-r--r--templates/ntp.conf.debian.erb2
-rw-r--r--templates/ntp.conf.el.erb2
-rw-r--r--templates/ntp.conf.freebsd.erb2
-rw-r--r--templates/ntp.conf.gentoo.erb2
-rw-r--r--templates/ntp.conf.suse.erb2
5 files changed, 5 insertions, 5 deletions
diff --git a/templates/ntp.conf.debian.erb b/templates/ntp.conf.debian.erb
index 324b91c..1ca6b20 100644
--- a/templates/ntp.conf.debian.erb
+++ b/templates/ntp.conf.debian.erb
@@ -25,7 +25,7 @@ filegen clockstats file clockstats type day enable
# pick a different set every time it starts up. Please consider joining the
# pool: <http://www.pool.ntp.org/join.html>
-# Managed by puppet class { "ntp": servers => [ ... ] }
+# Managed by puppet class { 'ntp': servers => [ ... ] }
<% [@servers].flatten.each do |server| -%>
server <%= server %>
<% end -%>
diff --git a/templates/ntp.conf.el.erb b/templates/ntp.conf.el.erb
index 157b28d..72c6e49 100644
--- a/templates/ntp.conf.el.erb
+++ b/templates/ntp.conf.el.erb
@@ -23,7 +23,7 @@ restrict -6 ::1
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
-# Managed by puppet class { "ntp": servers => [ ... ] }
+# Managed by puppet class { 'ntp': servers => [ ... ] }
<% [@servers].flatten.each do |server| -%>
server <%= server %>
<% end -%>
diff --git a/templates/ntp.conf.freebsd.erb b/templates/ntp.conf.freebsd.erb
index 7fcffb8..12be09c 100644
--- a/templates/ntp.conf.freebsd.erb
+++ b/templates/ntp.conf.freebsd.erb
@@ -17,7 +17,7 @@
# 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 => [ ... ] }
+# 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.
diff --git a/templates/ntp.conf.gentoo.erb b/templates/ntp.conf.gentoo.erb
index c22026a..c981c7d 100644
--- a/templates/ntp.conf.gentoo.erb
+++ b/templates/ntp.conf.gentoo.erb
@@ -12,7 +12,7 @@
tinker panic 0
<% end -%>
-# Managed by puppet class { "ntp": servers => [ ... ] }
+# Managed by puppet class { 'ntp': servers => [ ... ] }
<% [@servers].flatten.each do |server| -%>
server <%= server %>
<% end -%>
diff --git a/templates/ntp.conf.suse.erb b/templates/ntp.conf.suse.erb
index 1cbe6a2..1a4361e 100644
--- a/templates/ntp.conf.suse.erb
+++ b/templates/ntp.conf.suse.erb
@@ -38,7 +38,7 @@ server 127.127.1.0 # local clock (LCL)
fudge 127.127.1.0 stratum 10 # LCL is unsynchronized
<% end -%>
-# Managed by puppet class { "ntp": servers => [ ... ] }
+# Managed by puppet class { 'ntp': servers => [ ... ] }
<% [@servers].flatten.each do |server| -%>
server <%= server %>
<% end -%>