# HG changeset patch # User Kim Alvefur # Date 1331819266 -3600 # Node ID 403b56b7801877995a9ac5fb03e5f2bf5e2896b3 # Parent 9eccb5a279890d35c1b6ead717d93ea506a7a6fe mod_posix, mod_bosh, mod_admin_telnet: Use module:set_global() diff -r 9eccb5a27989 -r 403b56b78018 plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Thu Mar 15 03:19:35 2012 +0000 +++ b/plugins/mod_admin_telnet.lua Thu Mar 15 14:47:46 2012 +0100 @@ -6,7 +6,7 @@ -- COPYING file in the source package for more information. -- -module.host = "*"; +module:set_global(); local _G = _G; diff -r 9eccb5a27989 -r 403b56b78018 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Thu Mar 15 03:19:35 2012 +0000 +++ b/plugins/mod_bosh.lua Thu Mar 15 14:47:46 2012 +0100 @@ -6,7 +6,7 @@ -- COPYING file in the source package for more information. -- -module.host = "*" -- Global module +module:set_global(); -- Global module local hosts = _G.hosts; local new_xmpp_stream = require "util.xmppstream".new; diff -r 9eccb5a27989 -r 403b56b78018 plugins/mod_posix.lua --- a/plugins/mod_posix.lua Thu Mar 15 03:19:35 2012 +0000 +++ b/plugins/mod_posix.lua Thu Mar 15 14:47:46 2012 +0100 @@ -22,7 +22,7 @@ local prosody = _G.prosody; -module.host = "*"; -- we're a global module +module:set_global(); -- we're a global module local umask = module:get_option("umask") or "027"; pposix.umask(umask);