Simplify maintainer scripts

This commit is contained in:
Sébastien Delafond
2024-11-16 14:21:12 +01:00
parent 9a01c64f68
commit 70cbc12ac7
2 changed files with 0 additions and 23 deletions
-10
View File
@@ -2,16 +2,6 @@
set -e
case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0
-13
View File
@@ -2,19 +2,6 @@
set -e
case "$1" in
install|upgrade)
;;
abort-upgrade)
;;
*)
echo "preinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0