summaryrefslogtreecommitdiff
path: root/debian/preinst
blob: a9573de9a2c2b1f35e15cf3aad6c7f7b4c5b0d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

# If upgrading from package version
# with unmanaged upstart configuration
# and agent stop the agent and remove
# the upstart configuration.
if [ -f /etc/init/waagent.conf ]; then
    stop waagent 2>&1 > /dev/null || true
    rm -f /etc/init/waagent.conf
fi

#DEBHELPER#

exit 0