5860e2a10c1ccf5fa331430374917c710f6bbaf0
[qcpufreq] / debian / postinst
1 #!/bin/sh
2 # postinst script for qcpufreq
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # update the sudoers file
9 update-sudoers
10
11 #HACK: make files executable
12 if [ -e /opt/usr/bin/QCPUFreq ]; then
13         chmod a+x /opt/usr/bin/QCPUFreq
14         chmod a+x /opt/usr/bin/set_scalingmaxfreq
15         chmod a+x /opt/usr/bin/set_sr
16 fi
17
18
19
20 # dh_installdeb will replace this with shell code automatically
21 # generated by other debhelper scripts.
22
23 #DEBHELPER#
24
25 exit 0
26
27