diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:12:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 19:12:15 +0000 |
commit | 8cabc67967e8b0d613af255553f1ff9db60190e4 (patch) | |
tree | ab7c9a43579d3feddc09724a3bd3215d6c096c5e /debian/postinst | |
parent | Adding upstream version 5.4.4. (diff) | |
download | reprepro-8cabc67967e8b0d613af255553f1ff9db60190e4.tar.xz reprepro-8cabc67967e8b0d613af255553f1ff9db60190e4.zip |
Adding debian version 5.4.4-1.debian/5.4.4-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/postinst')
-rw-r--r-- | debian/postinst | 16 |
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 |