diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-09 00:23:08 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-09 00:23:08 +0100 |
commit | 829aaea2fd758250b0978c3dd04e1f310023b0ed (patch) | |
tree | b06c91efc51707c08e5c430bacdd6334fd7c15d2 /util/startup.lua | |
parent | 6666a4c8147fd5ba7e58fdc0fef64e8c0ff83be3 (diff) | |
download | prosody-829aaea2fd758250b0978c3dd04e1f310023b0ed.tar.gz prosody-829aaea2fd758250b0978c3dd04e1f310023b0ed.zip |
util.startup: Split plugin installer path setup into a separate function
Diffstat (limited to 'util/startup.lua')
-rw-r--r-- | util/startup.lua | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/util/startup.lua b/util/startup.lua index 62fd5579..c9d06109 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -228,17 +228,22 @@ end function startup.setup_plugindir() local custom_plugin_paths = config.get("*", "plugin_paths"); - local installer_plugin_path = config.get("*", "installer_plugin_path") or "custom_plugins"; local path_sep = package.config:sub(3,3); - installer_plugin_path = config.resolve_relative_path(require "lfs".currentdir(), installer_plugin_path); - require "lfs".mkdir(installer_plugin_path); - require"util.paths".complement_lua_path(installer_plugin_path); if custom_plugin_paths then -- path1;path2;path3;defaultpath... -- luacheck: ignore 111 CFG_PLUGINDIR = table.concat(custom_plugin_paths, path_sep)..path_sep..(CFG_PLUGINDIR or "plugins"); prosody.paths.plugins = CFG_PLUGINDIR; end +end + +function startup.setup_plugin_install_path() + local installer_plugin_path = config.get("*", "installer_plugin_path") or "custom_plugins"; + local path_sep = package.config:sub(3,3); + installer_plugin_path = config.resolve_relative_path(require "lfs".currentdir(), installer_plugin_path); + require "lfs".mkdir(installer_plugin_path); + require"util.paths".complement_lua_path(installer_plugin_path); + -- luacheck: ignore 111 CFG_PLUGINDIR = installer_plugin_path..path_sep..(CFG_PLUGINDIR or "plugins"); prosody.paths.plugins = CFG_PLUGINDIR; end @@ -534,6 +539,7 @@ function startup.prosodyctl() startup.force_console_logging(); startup.init_logging(); startup.setup_plugindir(); + startup.setup_plugin_install_path(); startup.setup_datadir(); startup.chdir(); startup.read_version(); @@ -559,6 +565,7 @@ function startup.prosody() startup.init_logging(); startup.load_libraries(); startup.setup_plugindir(); + startup.setup_plugin_install_path(); startup.setup_datadir(); startup.chdir(); startup.add_global_prosody_functions(); |