#!/bin/sh
# postinst script for mozilla-locale-auto

set -e

case "$1" in
	configure|abort-upgrade)
		update-alternatives --install /usr/bin/mozilla mozilla /usr/bin/mozilla-locale-auto 120 \
		                    --slave /usr/share/man/man1/mozilla.1.gz mozilla.1.gz /usr/share/man/man1/mozilla-1.7.1.gz
	    
	;;
    	abort-remove|abort-deconfigure)
    	;;
    	*)
        	echo "postinst 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

