From 65c179b10dd6fb410a4aa4747993e4ff68eca3f8 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 22 Feb 2011 18:02:23 +0000 Subject: prosody: Change plugin_path -> plugin_paths and make it an array instead of a string --- prosody | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'prosody') diff --git a/prosody b/prosody index 48977c30..81d87153 100755 --- a/prosody +++ b/prosody @@ -184,7 +184,10 @@ function init_global_state() prosody.hosts = hosts; local data_path = config.get("*", "core", "data_path") or CFG_DATADIR or "data"; - CFG_PLUGINDIR = config.get("*", "core", "plugin_path") or CFG_PLUGINDIR or "plugins" + local custom_plugin_paths = config.get("*", "core", "plugin_paths"); + if custom_plugin_paths then + CFG_PLUGINDIR = table.concat(custom_plugin_paths, package.config:sub(3,3)); -- path1;path2;path3 + end prosody.paths = { source = CFG_SOURCEDIR, config = CFG_CONFIGDIR, plugins = CFG_PLUGINDIR, data = data_path }; -- cgit v1.2.3