fuel-library/deployment/puppet/cobbler/templates/snippets/ntp_to_masternode.erb
Stanislaw Bogatkin 7a06344429 Stop using sntp and start using ntpdate
Change-Id: I598b3c7edacf0f61a6fc04efac06b25fad2be1f4
Related-Bug: #1417574
2015-02-05 00:20:19 +03:00

14 lines
427 B
Plaintext

# Disable panic about huge clock offset
sed -i '/^\s*tinker panic/ d' /etc/ntp.conf
sed -i '1 i tinker panic 0' /etc/ntp.conf
echo 0 > /var/lib/ntp/drift
chown ntp: /var/lib/ntp/drift
# Point installed ntpd to Master node
sed -i '/^\s*server/ d' /etc/ntp.conf
echo "server $server burst iburst" >> /etc/ntp.conf
sed -i 's/SYNC_HWCLOCK\s*=\s*no/SYNC_HWCLOCK=yes/' /etc/sysconfig/ntpdate
chkconfig ntpd on
chkconfig ntpdate on