1
0
Fork 0
linux/debian/hyperv-daemons.preinst
Daniel Baumann 09ce90cf76
Adding debian version 6.12.33-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 12:15:16 +02:00

21 lines
588 B
Bash

#!/bin/sh
set -e
if [ "$1" = "upgrade" ]; then
services='kvp vss'
if dpkg --compare-versions "$2" lt 6.10~rc6-1~exp1; then
services="fcopy $services"
fi
for i in $services; do
if [ -d /run/systemd/system ]; then
systemctl stop hyperv-daemons.hv-$i-daemon.service 2>/dev/null || true
fi
deb-systemd-helper purge hyperv-daemons.hv-$i-daemon.service || true
invoke-rc.d --skip-systemd-native hyperv-daemons.hv-$i-daemon stop || true
update-rc.d hyperv-daemons.hv-$i-daemon remove || true
done
fi
#DEBHELPER#
exit 0