]> git.proxmox.com Git - pmg-api.git/blame - debian/postrm
bump version to 8.1.0
[pmg-api.git] / debian / postrm
CommitLineData
ac81f7c9
SI
1#!/bin/sh
2
3set -e
4
5if [ "$1" = "purge" ] && command -v ucf >/dev/null 2>&1; then
6
7 ucfq -w pmg-api | cut -d : -f 1 | while read -r cfile ; do
8 ucfr pmg-api --purge "$cfile"
9 ucf --purge "$cfile"
10 for ext in .ucf-new .ucf-old .ucf-dist ""; do
11 rm -f "${cfile}${ext}"
12 done
13 done
14fi
15
16# dh_installdeb will replace this with shell code automatically
17# generated by other debhelper scripts.
18
19#DEBHELPER#