File: prerm

package info (click to toggle)
flashplugin-nonfree 1%3A3.2%2Bwheezy1
  • links: PTS
  • area: contrib
  • in suites: wheezy
  • size: 140 kB
  • sloc: sh: 355; perl: 36; makefile: 10
file content (23 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

set -e

case "$1" in
    remove|upgrade|deconfigure)
	update-flashplugin-nonfree --uninstall || true
    ;;

    failed-upgrade)
    ;;

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

#DEBHELPER#

exit 0