haproxy/haproxy/debian/haproxy.postrm

17 lines
173 B
Plaintext
Raw Permalink Normal View History

2022-06-07 11:44:34 +05:30
#!/bin/sh
set -e
#DEBHELPER#
case "$1" in
purge)
deluser --system haproxy || true
delgroup --system haproxy || true
;;
*)
;;
esac
exit 0