b66879c1485c0266410c2c86b66cf9eefaa02a49
[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 fi
16
17
18
19 # dh_installdeb will replace this with shell code automatically
20 # generated by other debhelper scripts.
21
22 #DEBHELPER#
23
24 exit 0
25
26