]> git.ipfire.org Git - thirdparty/lldpd.git/blame - debian/postrm
Update CHANGELOG and README to state that LLDP-MED is supported
[thirdparty/lldpd.git] / debian / postrm
CommitLineData
b5562b23
VB
1#!/bin/sh -e
2
3#DEBHELPER#
4
5case "$1" in
6 purge)
33aced7a 7 dpkg-statoverride --remove /usr/sbin/lldpctl
6629befa
VB
8 deluser --system _lldpd || true
9 delgroup --system _lldpd || true
b5562b23
VB
10
11 rm -rf /var/run/lldpd
12 ;;
13 *)
14 ;;
15esac
16
17exit 0