summarylogtreecommitdiffstats
path: root/ceton_infinitv.install
blob: 093e0a1d57dbb05498b2b386381e07cfa2818305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
KERNEL_VER=`pacman -Qi linux | grep "Version" | sed 's/^Version\s*:\s//'`

post_install() {
    # Update module dependencies for all kernels
    for _kernel in $(cat /usr/lib/modules/extramodules-*/version); do
        depmod $_kernel
    done
}

post_upgrade() {
    post_install
}

post_remove() {
    post_install
}