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

set -e

# update the sudoers file
update-sudoers

#make files executable
if [ -e /opt/usr/bin/QCPUFreq ]; then
	chmod a+x /opt/usr/bin/QCPUFreq
fi
if [ -e /opt/usr/bin/QCPUFreq.helper ]; then
	chmod a+x /opt/usr/bin/QCPUFreq.helper
fi


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

#DEBHELPER#

exit 0


