trove/integration/scripts/files/elements/ubuntu-guest/post-install.d/12-ntp

11 lines
195 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