New release: 0.4.4
[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 #make files executable
12 if [ -e /opt/usr/bin/QCPUFreq ]; then
13         chmod a+x /opt/usr/bin/QCPUFreq
14 fi
15 if [ -e /opt/usr/bin/QCPUFreq.helper ]; then
16         chmod a+x /opt/usr/bin/QCPUFreq.helper
17 fi
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