mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-07 04:07:13 +08:00
30 lines
346 B
Plaintext
30 lines
346 B
Plaintext
|
refresh_depmod()
|
||
|
{
|
||
|
echo "updating kernel modules..."
|
||
|
depmod -a
|
||
|
}
|
||
|
|
||
|
# arg 1: the new package version
|
||
|
post_install()
|
||
|
{
|
||
|
refresh_depmod
|
||
|
}
|
||
|
|
||
|
# arg 1: the new package version
|
||
|
# arg 2: the old package version
|
||
|
post_upgrade()
|
||
|
{
|
||
|
refresh_depmod
|
||
|
}
|
||
|
|
||
|
# arg 1: the old package version
|
||
|
post_remove()
|
||
|
{
|
||
|
refresh_depmod
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
|
||
|
$op $*
|