mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
31 lines
633 B
Text
31 lines
633 B
Text
|
# arg 1: the new package version
|
||
|
post_install() {
|
||
|
post_upgrade
|
||
|
}
|
||
|
|
||
|
# arg 1: the new package version
|
||
|
# arg 2: the old package version
|
||
|
post_upgrade() {
|
||
|
# updating module dependencies
|
||
|
echo ">>> Updating module dependencies. Please wait ..."
|
||
|
KERNEL_VERSION=2.6.23-ARCH
|
||
|
depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
|
||
|
}
|
||
|
|
||
|
# arg 1: the old package version
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
# arg 1: the old package version
|
||
|
post_remove() {
|
||
|
# updating module dependencies
|
||
|
echo ">>> Updating module dependencies. Please wait ..."
|
||
|
KERNEL_VERSION=2.6.23-ARCH
|
||
|
depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|