#!/bin/sh
set -e

. /usr/share/debconf/confmodule
db_version 2.0

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

#DEBHELPER#

case "$1" in
	configure)
		update-mozilla-chrome 
	;;
	abort-upgrade|abort-remove|abort-deconfigure)
        ;;
        *)
	        echo "postinst called with unknown argument \`$1'" >&2
	        exit 0
	;;
esac

exit 0
