From 8cabc67967e8b0d613af255553f1ff9db60190e4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 21:12:15 +0200 Subject: Adding debian version 5.4.4-1. Signed-off-by: Daniel Baumann --- debian/postrm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 debian/postrm (limited to 'debian/postrm') diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 0000000..282c335 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,20 @@ +#!/bin/sh + +set -e + +case "$1" in + purge) + # if purging the package in a failed-upgrade scenerio, also get rid of the temporary file: + rm -f /etc/bash_completion.d/reprepro.dpkg-remove + ;; + abort-install|abort-upgrade) + # if the upgrade failed, revert the old /etc/bash_completion.d/reprepro file + if test -f /etc/bash_completion.d/reprepro.dpkg-remove && ! test -e /etc/bash_completion.d/reprepro; then + mv -n /etc/bash_completion.d/reprepro.dpkg-remove /etc/bash_completion.d/reprepro + fi + ;; +esac + +#DEBHELPER# + +exit 0 -- cgit v1.2.3