Files
NLnetLabs-krill/pkg/debian/postrm
T
2021-06-29 10:48:34 +02:00

18 lines
360 B
Bash

#!/bin/sh
set -e
KRILL_CONF="/etc/krill.conf"
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 [ -f ${KRILL_CONF} ]; then
rm ${KRILL_CONF}
fi
;;
esac
#DEBHELPER#