summaryrefslogtreecommitdiffstats
path: root/debian/hyperv-daemons.preinst
blob: 5810d294685cd483f33bfc765e54fbad6a016761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

if [ "$1" = "upgrade" ]; then
    for i in fcopy kvp vss; 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