michael@0: #literal #! /bin/sh michael@0: #filter substitution michael@0: # prerm script for moz michael@0: # michael@0: # see: dh_installdeb(1) michael@0: michael@0: set -e michael@0: michael@0: case "$1" in michael@0: remove|upgrade|deconfigure) michael@0: ;; michael@0: michael@0: failed-upgrade) michael@0: ;; michael@0: michael@0: *) michael@0: echo "postinst called with unknown argument \`$1'" >&2 michael@0: exit 1 michael@0: ;; michael@0: esac michael@0: michael@0: #ifdef MOZ_WIDGET_GTK michael@0: gtk-update-icon-cache /usr/share/icons/hicolor michael@0: #endif michael@0: michael@0: michael@0: exit 0 michael@0: michael@0: