summarylogtreecommitdiffstats
path: root/corefreq-git.install
blob: cec9b32936f7e6631b2a709edfd5567d8d18a66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
        dkms install corefreq-git/${1%%-*}
        echo 'modprobe or insmod the kernel module corefreqk.ko before starting the daemon corefreqd.service then run the client corefreq-cli'
}

pre_upgrade() {
        pre_remove ${2%%-*}
}

post_upgrade() {
        post_install ${1%%-*}
}

pre_remove() {
        dkms remove corefreq-git/${1%%-*} --all
}