From b7e8d5af06ee840cc48217ca4629cf28aeeb3c50 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:35:19 +0200 Subject: Adding debian version 252.22-1~deb12u1. Signed-off-by: Daniel Baumann --- debian/systemd.preinst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 debian/systemd.preinst (limited to 'debian/systemd.preinst') diff --git a/debian/systemd.preinst b/debian/systemd.preinst new file mode 100644 index 0000000..122ee31 --- /dev/null +++ b/debian/systemd.preinst @@ -0,0 +1,21 @@ +#!/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 -- cgit v1.2.3