summaryrefslogtreecommitdiffstats
path: root/debian/haproxy.postrm
blob: 5e410163f341aa615eea1395a634a55884d0425e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

#DEBHELPER#

case "$1" in
    purge)
        deluser --system haproxy || true
        delgroup --system haproxy || true
    ;;
    *)
    ;;
esac

exit 0