summaryrefslogtreecommitdiffstats
path: root/debian/open-infrastructure-apache-tools.prerm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-29 08:07:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-31 09:37:08 +0000
commit13420a1d15abe6264175284652d3d2b0a5e1f359 (patch)
tree74af63cba4b2bdce31c9a60441a86153f4dd0727 /debian/open-infrastructure-apache-tools.prerm
parentAdding KEY_ALGO debconf handling in dehydrated-tools. (diff)
downloadopen-infrastructure-service-tools-13420a1d15abe6264175284652d3d2b0a5e1f359.tar.xz
open-infrastructure-service-tools-13420a1d15abe6264175284652d3d2b0a5e1f359.zip
Moving to dh_installalternatives.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/open-infrastructure-apache-tools.prerm')
-rwxr-xr-xdebian/open-infrastructure-apache-tools.prerm26
1 files changed, 0 insertions, 26 deletions
diff --git a/debian/open-infrastructure-apache-tools.prerm b/debian/open-infrastructure-apache-tools.prerm
deleted file mode 100755
index b580074..0000000
--- a/debian/open-infrastructure-apache-tools.prerm
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-set -e
-
-case "${1}" in
- remove|upgrade|deconfigure)
- update-alternatives --quiet --remove apache-icons /usr/share/apache2/icons
- update-alternatives --quiet --remove apache-icons /usr/share/open-infrastructure/apache-icons/awesome-png
- update-alternatives --quiet --remove apache-icons /usr/share/open-infrastructure/apache-icons/awesome-svg
- update-alternatives --quiet --remove apache-icons /usr/share/open-infrastructure/apache-icons/tango-png
- update-alternatives --quiet --remove apache-icons /usr/share/open-infrastructure/apache-icons/tango-svg
- ;;
-
- failed-upgrade)
-
- ;;
-
- *)
- echo "prerm called with unknown argument \`${1}'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0