#!/bin/sh


set -e


#-------------------------------------------------------------------------


post_install()
{
	RB="/usr/local/bin/resolv.sh"
	chmod +x $RB
}


#-------------------------------------------------------------------------


case "$1" in
	configure)
		post_install || true
	;;

	abort-upgrade|abort-remove|abort-deconfigure)
	;;

	*)
		echo "postinst was called with unknown argument '$1'" >&2
		exit 1
	;;
esac

#DEBHELPER#

exit 0
