diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-03-25 18:52:34 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-03-25 18:52:34 +0000 |
commit | fb8aa8bc8b7c748d33f3c07a00c8d7b9f45f454f (patch) | |
tree | c561c0e55a4564f37570a1bc981fbc5206d7805f | |
parent | 3a47c0c1736ab4b39d397e5d9c1285b3aba19071 (diff) | |
download | prosody-fb8aa8bc8b7c748d33f3c07a00c8d7b9f45f454f.tar.gz prosody-fb8aa8bc8b7c748d33f3c07a00c8d7b9f45f454f.zip |
tools/ejabberd2prosody: Create prosody singleton so datamanager can detect the platform (set no platform to use lfs, pposix isn't necessary here)
-rwxr-xr-x | tools/ejabberd2prosody.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua index d44c929b..a231abd8 100755 --- a/tools/ejabberd2prosody.lua +++ b/tools/ejabberd2prosody.lua @@ -17,6 +17,8 @@ end require "erlparse"; +prosody = {}; + local serialize = require "util.serialization".serialize; local st = require "util.stanza"; package.loaded["util.logger"] = {init = function() return function() end; end} |