summarylogtreecommitdiffstats
path: root/spl.install
blob: ca74fcf0dba4df04eb42a75eb4fea373d9c4ae71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
post_install() {
    run_depmod
}

post_remove() {
    run_depmod
}

post_upgrade() {
    run_depmod
}

run_depmod() {
    echo ">>> Updating SPL module dependencies"
    depmod -a 4.10.5-1-ARCH
}