initial commit
imported from https://salsa.debian.org/kernel-team/linux.git commit 9d5cc9d9d6501d7f1dd7e194d4b245bd0b6c6a22 version 6.11.4-1
This commit is contained in:
21
debian/hyperv-daemons.preinst
vendored
Normal file
21
debian/hyperv-daemons.preinst
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/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
|
Reference in New Issue
Block a user