--- /dev/null
+##
+## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
+##
+
+# The settings in this file are used by the program ntpdate-debian, but not
+# by the upstream program ntpdate.
+
+# Set to "yes" to take the server list from /etc/ntp.conf, from package ntp,
+# so you only have to keep it in one place.
+NTPDATE_USE_NTP_CONF=no
+
+# List of NTP servers to use (Separate multiple servers with spaces.)
+# Not used if NTPDATE_USE_NTP_CONF is yes.
+# merikanto 86.59.118.147
+# orff 194.177.211.209
+# ravel 206.12.19.5
+# busoni 140.211.15.34
+NTPSERVERS="86.59.118.147 194.177.211.209 206.12.19.5 140.211.15.34"
+
+# Additional options to pass to ntpdate
+NTPOPTIONS=""
--- /dev/null
+class ntpdate {
+ case getfromhash($nodeinfo, 'broken-rtc') {
+ true: {
+ package {
+ ntpdate: ensure => installed;
+ lockfile-progs: ensure => installed;
+ }
+ file {
+ "/etc/default/ntpdate":
+ owner => root,
+ group => root,
+ mode => 444,
+ source => [ "puppet:///modules/ntpdate/etc-default-ntpdate" ],
+ ;
+ }
+ }
+ }
+}
+# vim:set et:
+# vim:set sts=4 ts=4:
+# vim:set shiftwidth=4: