Last change
on this file was
91:f9cd8ca1a62d,
checked in by Ralph Meijer <ralphm@…>, 11 years ago
|
Add a twistd plugin to set-up a basic XMPP server that accepts components.
This adds a simple twistd plugin that can be configured to accept s2s
connections for a predefined list of domains, and also accepts External
Component connections that service those domains.
|
File size:
254 bytes
|
Line | |
---|
1 | #! /bin/sh |
---|
2 | |
---|
3 | set -e |
---|
4 | |
---|
5 | #DEBHELPER# |
---|
6 | |
---|
7 | case "$1" in |
---|
8 | configure) |
---|
9 | for p in $(pyversions -i); do |
---|
10 | $p -c 'from twisted.plugin import IPlugin, getPlugins; list(getPlugins(IPlugin))' >/dev/null 2>&1 || true |
---|
11 | done |
---|
12 | ;; |
---|
13 | esac |
---|
14 | |
---|
15 | exit 0 |
---|
Note: See
TracBrowser
for help on using the repository browser.