
This commit is a verbatim copy of the nodepool/elements directory in the openstack/project-config repo. Change-Id: I86768fcda43f2997700ce748ba7118a2ab2d43f0
39 lines
1015 B
Bash
Executable File
39 lines
1015 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
|
|
upstart)
|
|
# nothing to do
|
|
exit 0
|
|
;;
|
|
systemd)
|
|
# stick with default systemd timesyncd on bookworm, focal and beyond
|
|
if [[ ":bookworm: :focal: :jammy: :noble:" =~ :${DIB_RELEASE}: ]]; then
|
|
exit 0
|
|
elif [[ $DISTRO_NAME = "ubuntu" || $DISTRO_NAME = "debian" ]]; then
|
|
systemctl enable ntp.service
|
|
elif [[ ( $DISTRO_NAME == "centos" && $DIB_RELEASE > 7 ) || $DISTRO_NAME == "fedora" || $DISTRO_NAME == "rocky" ]]; then
|
|
systemctl enable chronyd
|
|
else
|
|
systemctl enable ntpd.service
|
|
fi
|
|
;;
|
|
openrc)
|
|
rc-update add ntp-client default
|
|
rc-update add acpid default
|
|
;;
|
|
sysv)
|
|
# ntp is enabled by default, nothing to do
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Unsupported init system $DIB_INIT_SYSTEM"
|
|
exit 1
|
|
;;
|
|
esac
|