summarylogtreecommitdiffstats
path: root/spl.install
blob: 9d3980d6acb42308c6d3b04327a67646219d7e3f (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.16.8-1-hardened
}