File: open-infrastructure-service-tools.prerm

package info (click to toggle)
open-infrastructure-service-tools 20240930-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 7,264 kB
  • sloc: sh: 1,352; makefile: 574
file content (26 lines) | stat: -rwxr-xr-x 698 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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