]> git.proxmox.com Git - mirror_frr.git/blob - debian/frr.postrm
bgpd: Allow failed hostname lookup to continue in bmp (#5399)
[mirror_frr.git] / debian / frr.postrm
1 #!/bin/sh
2 set -e
3
4 rm -f /etc/frr/.pkg.frr.nointegrated
5
6 if [ "$1" = "purge" ]; then
7 rm -rf /run/frr || true
8
9 # "purge" does not remove logfiles. therefore we shouldn't delete
10 # the "frr" user/group since that would leave files with "dangling"
11 # ownership.
12 fi
13
14 #DEBHELPER#