mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 10:38:06 +02:00
17 lines
189 B
Bash
17 lines
189 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
ACTION=$1
|
|
|
|
CFG_FILE="/etc/lazarus-${VERSION}"
|
|
|
|
# Debhelper code
|
|
#DEBHELPER#
|
|
|
|
if test "${ACTION}" = "purge"
|
|
then
|
|
rm -rf "${CFG_FILE}".cfg
|
|
rm -rf "${CFG_FILE}".bak
|
|
fi
|