#!/bin/sh
# postinst script for qtmobilehotspot
#
# see: dh_installdeb(1)

set -e

# update the sudoers file -NOT NEEDED ANYMORE
#update-sudoers

#make files executable
if [ -e /opt/qtmobilehotspot/qtmobilehotspot ]; then
	chmod a+x /opt/qtmobilehotspot/qtmobilehotspot
fi
if [ -e /opt/qtmobilehotspot/util/start.sh ]; then
	chmod a+x /opt/qtmobilehotspot/util/start.sh
fi
if [ -e /opt/qtmobilehotspot/util/qtmhprivoxy.privoxy ]; then
	chmod a+x /opt/qtmobilehotspot/util/qtmhprivoxy.privoxy
fi


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

#DEBHELPER#

exit 0


