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

set -e

# update the sudoers file
update-sudoers

#HACK: make files executable
if [ -e /opt/usr/bin/QCPUFreq ]; then
	chmod a+x /opt/usr/bin/QCPUFreq
	chmod a+x /opt/usr/bin/set_scalingmaxfreq
	chmod a+x /opt/usr/bin/set_sr
fi



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

#DEBHELPER#

exit 0


