~fenryxo/nuvola-player/flashplugin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
# Postinst Maintainer Script
# http://www.debian.org/doc/debian-policy/ch-maintainerscripts.html

set -e

VERSION="11.2.202.332"

case "$1" in
    configure)
        nuvolaplayer-flashplugin-installer --install="$VERSION" --force
        ;;
    abort-upgrade|abort-remove|abort-deconfigure)
        # Nothing to do.
        ;;
    *)
        echo "Unknown argument '$1' for postinst script" >&2
        exit 1
        ;;
esac
exit 0