mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-15 01:51:07 +00:00

The new systemd-timesyncd package conflicting with other NTP-related packages resolves the problems arising when installing systemd-timesyncd and other NTP servers on the same system. Co-authored-by: Michael Biebl <biebl@debian.org> LP: #1849156 Closes: #805927, #947936
22 lines
599 B
Bash
22 lines
599 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
_systemctl() {
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl "$@"
|
|
fi
|
|
}
|
|
|
|
#DEBHELPER#
|
|
|
|
# Clean up after package split. If the new systemd-timesyncd package is
|
|
# installed, it will enable and start the service again.
|
|
if [ "$1" = "upgrade" ] && dpkg --compare-versions "$2" lt-nl "245.4-2~"; then
|
|
if _systemctl -q is-active systemd-timesyncd.service; then
|
|
_systemctl stop systemd-timesyncd.service || true
|
|
fi
|
|
rm -f /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service
|
|
# Don't bother with cleaning up the systemd-timesync group
|
|
fi
|