aboutsummaryrefslogtreecommitdiffstats
path: root/prosodyctl
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-09-19 12:39:21 +0100
committerMatthew Wild <mwild1@gmail.com>2012-09-19 12:39:21 +0100
commitf4bd74968a626f3e3aa1639c70dae2c2f33db39e (patch)
tree3abf83e55e8be8ee509ec6738437e8fdbb937e8b /prosodyctl
parentfc11c75968dab816534939aafb2378dcd052c5e5 (diff)
downloadprosody-f4bd74968a626f3e3aa1639c70dae2c2f33db39e.tar.gz
prosody-f4bd74968a626f3e3aa1639c70dae2c2f33db39e.zip
prosody, prosodyctl: chdir() to data directory on startup
Diffstat (limited to 'prosodyctl')
-rwxr-xr-xprosodyctl6
1 files changed, 6 insertions, 0 deletions
diff --git a/prosodyctl b/prosodyctl
index 25570fc4..d4aa6d5e 100755
--- a/prosodyctl
+++ b/prosodyctl
@@ -50,6 +50,7 @@ local prosody = {
platform = "posix";
lock_globals = function () end;
unlock_globals = function () end;
+ installed = CFG_SOURCEDIR ~= nil;
};
_G.prosody = prosody;
@@ -119,6 +120,11 @@ end
prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR,
plugins = CFG_PLUGINDIR or "plugins", data = data_path };
+if prosody.installed then
+ -- Change working directory to data path.
+ require "lfs".chdir(data_path);
+end
+
require "core.loggingmanager"
dependencies.log_warnings();