mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
12 lines
282 B
Plaintext
12 lines
282 B
Plaintext
post_install() {
|
|
python2 -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.7/site-packages/twisted/plugins -name dropin.cache | xargs -r rm -f
|
|
}
|