mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 04:57:14 +08:00
12 lines
281 B
Plaintext
12 lines
281 B
Plaintext
|
post_install() {
|
||
|
python -c 'from twisted.plugin import IPlugin, getPlugins; list(getPlugins(IPlugin))' >/dev/null 2>&1 || return 1
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
find /usr/lib/python2.6/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
||
|
}
|