diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:40:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:40:32 +0000 |
commit | 76faa357888fc7ac8697e12f151f70fd7227a978 (patch) | |
tree | 5cfd018ebeb537a499caa021a008c6e51cc22d73 /debian/dselect.postrm | |
parent | Adding upstream version 1.20.13. (diff) | |
download | dpkg-76faa357888fc7ac8697e12f151f70fd7227a978.tar.xz dpkg-76faa357888fc7ac8697e12f151f70fd7227a978.zip |
Adding debian version 1.20.13.debian/1.20.13debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/dselect.postrm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/debian/dselect.postrm b/debian/dselect.postrm new file mode 100755 index 0000000..7376dd6 --- /dev/null +++ b/debian/dselect.postrm @@ -0,0 +1,34 @@ +#!/bin/sh +# See deb-postrm(5). + +set -e + +# Remove dselect methods state. +purge_state() { + admindir=${DPKG_ADMINDIR:-/var/lib/dpkg} + + rm -f $admindir/cmethopt 2>/dev/null + for method in disk ftp mnt multicd; do + rm -rf $admindir/methods/$method/* 2>/dev/null + done +} + +case "$1" in +remove) + ;; +purge) + purge_state + ;; +upgrade) + ;; +failed-upgrade|disappear|abort-install|abort-upgrade) + ;; +*) + echo "$0 called with unknown argument '$1'" 1>&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |