diskimage-builder/flavours/mysql/first-boot.d/10-ntp
2012-11-12 16:49:27 -08:00

12 lines
215 B
Bash
Executable File

#!/bin/bash
ntpfile=`mktemp`
cat << EOF > $ntpfile
server ntp.ubuntu.com iburst
server 127.127.1.0
fudge 127.127.1.0 stratum 10
EOF
mv /etc/ntp.conf /etc/ntp.conf.orig
mv $ntpfile /etc/ntp.conf
service ntp restart