summaryrefslogtreecommitdiffstats
path: root/debian/postinst
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:12:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:12:15 +0000
commit8cabc67967e8b0d613af255553f1ff9db60190e4 (patch)
treeab7c9a43579d3feddc09724a3bd3215d6c096c5e /debian/postinst
parentAdding upstream version 5.4.4. (diff)
downloadreprepro-debian.tar.xz
reprepro-debian.zip
Adding debian version 5.4.4-1.debian/5.4.4-1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/postinst')
-rw-r--r--debian/postinst16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/postinst b/debian/postinst
new file mode 100644
index 0000000..627747b
--- /dev/null
+++ b/debian/postinst
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+ configure)
+ if [ -f /etc/bash_completion.d/reprepro.dpkg-remove ] ; then
+ echo "Removing obsolete unmodified conffile /etc/bash_completion.d/reprepro"
+ rm -f /etc/bash_completion.d/reprepro.dpkg-remove
+ fi
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0