blob: 5199a5984eed350d7b0f951abd3be2c4432217be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
set -e
ACTION=$1
CFG_FILE="/etc/fpc-${VERSION}"
# Debhelper code
#DEBHELPER#
if test "${ACTION}" = "purge"
then
rm -f "${CFG_FILE}".cfg
rm -f "${CFG_FILE}".bak
fi
|