summarylogtreecommitdiffstats
path: root/spl.install
blob: 40f27298a6c199c20071f8d2da3393b9cfef2070 (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.14.10-1-hardened
}