]> git.proxmox.com Git - frr.git/blame - debian/frr.postrm
Format Build-Depends
[frr.git] / debian / frr.postrm
CommitLineData
bf024873
AD
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
8 rm -rf /etc/frr /var/run/frr /var/log/frr
9 userdel frr >/dev/null 2>&1 || true
10fi
11
12#DEBHELPER#