openbsd-ports/net/prosody/patches/patch-util_prosodyctl_lua
landry a11d494514 Enable posix module, otherwise the default config doesn't work.
While here enable compression module since we enforce dependency on
luazlib. We dont enable libevent use by default since it seems broken
(reported as https://code.google.com/p/lxmppd/issues/detail?id=452)

ok MAINTAINER jasper@
2014-11-27 08:12:51 +00:00

13 lines
409 B
Plaintext

$OpenBSD: patch-util_prosodyctl_lua,v 1.3 2014/11/27 08:12:51 landry Exp $
--- util/prosodyctl.lua.orig Wed Oct 15 11:33:36 2014
+++ util/prosodyctl.lua Tue Nov 25 14:24:23 2014
@@ -243,7 +243,7 @@ function start()
if not CFG_SOURCEDIR then
os.execute("./prosody");
else
- os.execute(CFG_SOURCEDIR.."/../../bin/prosody");
+ os.execute(CFG_SOURCEDIR.."/../../sbin/prosody");
end
return true;
end