diff options
author | root <root@rshg054.dnsready.net> | 2011-12-16 23:14:53 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-16 23:14:53 +0000 |
commit | 492f7c22a61fdb0488000da9f66d68e11bb43918 (patch) | |
tree | 4186fa7bc3f8d6b6e8bbf984b036a5478d63272f /testing/twisted/twisted.install | |
parent | ac25f0b5aaf7aff394a8df695be995ec8463e264 (diff) |
Fri Dec 16 23:14:53 UTC 2011
Diffstat (limited to 'testing/twisted/twisted.install')
-rw-r--r-- | testing/twisted/twisted.install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/twisted/twisted.install b/testing/twisted/twisted.install new file mode 100644 index 000000000..8e93ffd3c --- /dev/null +++ b/testing/twisted/twisted.install @@ -0,0 +1,11 @@ +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 +} |