File: postrm

package info (click to toggle)
biofox 1.1.5-1~lenny
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 164 kB
  • ctags: 10
  • sloc: sh: 36; makefile: 18
file content (27 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (2)
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
27
#! /bin/sh
# postrm script for biofox

set -e

case "$1" in
    remove|abort-install)
	if which update-iceape-chrome 2> /dev/null > /dev/null
	then
		update-iceape-chrome
	fi
        ;;
    purge|upgrade|failed-upgrade|abort-upgrade|disappear)
        ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1

esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0