
Significant changes: * Using docker image to install datastore. * Datastore image is common to different datastores. * Using backup docker image to do backup and restore. * Support MariaDB replication * Set most of the functional jobs as non-voting as nested virtualization is not supported in CI. Change-Id: Ia9c97a63a961eebc336b70d28dc77638144c1834
11 lines
195 B
Bash
Executable File
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
|