summarylogtreecommitdiffstats
path: root/spl.install
blob: 6831e66a2d4fe5ac9b40a7597dcb994a8ea7aff7 (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.13.4-1-hardened
}