mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 06:47:13 +08:00
15 lines
169 B
Plaintext
15 lines
169 B
Plaintext
|
post_install() {
|
||
|
echo "Updating Shared Library Links"
|
||
|
/sbin/ldconfig
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|