]> git.proxmox.com Git - mirror_frr.git/blame - debianpkg/frr.postrm
Merge pull request #3121 from pguibert6WIND/flowspec_json_issue
[mirror_frr.git] / debianpkg / frr.postrm
CommitLineData
4d916382
DS
1#!/bin/bash -e
2
3if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
4${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*"}
5# set -u not because of debhelper
6
7if [ "$1" = "purge" ]; then
d8e4c438
DS
8 rm -rf /etc/frr /var/run/frr /var/log/frr
9 userdel frr >/dev/null 2>&1 || true
4d916382
DS
10fi
11
12#DEBHELPER#