mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 14:47:18 +08:00
24 lines
268 B
Plaintext
24 lines
268 B
Plaintext
|
post_install() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
ldconfig -r .
|
||
|
PID=`pidof bonobo-activation-server`
|
||
|
if [ ! -z "${PID}" ]; then
|
||
|
killall -HUP bonobo-activation-server 2>&1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
pre_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
/bin/true
|
||
|
}
|
||
|
|
||
|
op=$1
|
||
|
shift
|
||
|
$op $*
|