aboutsummaryrefslogtreecommitdiffstats
path: root/debian/wireshark-common.postrm
blob: 2ea52f74d8a1e4604be8294e9d07736b452fd556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

GROUP=wireshark

if [ "$1" = "purge" ] ; then
      if getent group $GROUP >/dev/null; then
                if [ -x /usr/sbin/delgroup ]; then
                        echo "Removing wireshark group..."
                        delgroup --system $GROUP || echo "Could not remove wireshark group."
                fi
        fi
fi

#DEBHELPER#