Software /
code /
prosody
Diff
prosodyctl @ 1120:23fa69b911f7
prosodyctl: Use correct path for the data directory
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 05 May 2009 15:47:34 +0100 |
parent | 1115:8a7bc1a5eae6 |
child | 1122:07b2b5942957 |
line wrap: on
line diff
--- a/prosodyctl Tue May 05 14:19:45 2009 +0100 +++ b/prosodyctl Tue May 05 15:47:34 2009 +0100 @@ -61,6 +61,9 @@ end end +local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data"; +require "util.datamanager".set_data_path(data_path); + -- Switch away from root and into the prosody user -- local switched_user, current_uid; local ok, pposix = pcall(require, "util.pposix");