rotonda 0.4.0

composable, programmable BGP engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

ROTONDA_ETC="/etc/rotonda"

case "$1" in
purge)
    # Per https://www.debian.org/doc/debian-policy/ch-files.html#behavior
    # "configuration files must be preserved when the package is removed, and
    #  only deleted when the package is purged."
    if [ -d ${ROTONDA_ETC} ]; then
        rm -R ${ROTONDA_ETC}
    fi
    ;;
esac

#DEBHELPER#