diskimage-builder/flavours/nova-vm/first-boot.d/10-ntp
2012-11-10 00:04:13 +13: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