
This commit is a verbatim copy of the nodepool/elements directory in the openstack/project-config repo. Change-Id: I86768fcda43f2997700ce748ba7118a2ab2d43f0
18 lines
277 B
Bash
Executable File
18 lines
277 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
case "$DIB_INIT_SYSTEM" in
|
|
systemd)
|
|
systemctl enable ntp.service
|
|
;;
|
|
*)
|
|
echo "Unsupported init system $DIB_INIT_SYSTEM"
|
|
exit 1
|
|
;;
|
|
esac
|