c554a6b3b3
See I361059c6b62ea240b6fef5a61d254959622199d7 where we modified Fedora to not install the deprecated ntp package. Change-Id: I9147f16a4e67b15ac7cc0bc4684ad8390718525f
39 lines
942 B
Bash
Executable File
39 lines
942 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)
|
|
if [[ $DISTRO_NAME = "ubuntu" || $DISTRO_NAME = "debian" ]]; then
|
|
# stick with default systemd timesyncd on focal
|
|
if [[ ${DIB_RELEASE} != 'focal' ]]; then
|
|
systemctl enable ntp.service
|
|
fi
|
|
elif [[ ( $DISTRO_NAME == "centos" && $DIB_RELEASE > 7 ) || $DISTRO_NAME == "fedora" ]]; 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
|