aboutsummaryrefslogtreecommitdiffstats
path: root/util/startup.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* | util.startup: Re-enable installer path setupKim Alvefur2020-10-051-2/+2
| |
* | util.startup: Put 'installer_plugin_path' under data directory by defaultKim Alvefur2020-10-051-1/+1
| | | | | | | | | | Fixes issue where it ends up creating this in $PWD, which might be ~prosody, ~you or /, depending on how it's invoked.
* | util.startup: Init util.error with defaults if none givenMatthew Wild2020-08-281-1/+1
| |
* | util.error: Allow optional tracebacks to be injected on errorsMatthew Wild2020-08-281-0/+6
| | | | | | | | This allows extra debug info to be provided for development purposes.
* | Merge 0.11->trunkKim Alvefur2020-06-231-1/+0
|\|
| * util.startup: Remove duplicated initialization of logging (fix #1527)Kim Alvefur2020-06-221-1/+0
| |
* | util.argparse: Move exiting and error to util.startupKim Alvefur2020-06-171-1/+11
| | | | | | | | | | | | | | | | It's not so nice to have a library that exits the entire application from under you, so this and the error reporting belongs in util.startup. The argparse code was originally in util.startup but moved out in 1196f1e8d178 but the error handling should have stayed.
* | util.startup: Configure the GC on startup, using the config or built-in defaultsMatthew Wild2020-06-151-0/+17
| |
* | util.startup: Break out command line argument parsing into util.argparseKim Alvefur2020-02-191-49/+5
| | | | | | | | | | This will allow using it from other places such as prosodyctl sub-commands and plugins
* | util.startup: expose current process type (prosody/prosodyctl) in the global ↵Matthew Wild2020-01-281-0/+2
| | | | | | | | prosody object
* | Merge 0.11->trunkMatthew Wild2020-01-191-2/+1
|\|
| * util.startup: Ensure prosody.opts exists even when no options provided0.11.5Matthew Wild2020-01-191-1/+1
| |
| * util.startup: Remove accidentally-committed debuggingMatthew Wild2020-01-191-1/+0
| |
* | Merge 0.11->trunkMatthew Wild2020-01-191-37/+39
|\|
| * util.startup: Fix logic to make --config work againMatthew Wild2020-01-191-37/+39
| |
* | Merge 0.11->trunkMatthew Wild2020-01-191-6/+60
|\|
| * prosody/util.startup: Switch to parse_args() for --root and --configMatthew Wild2020-01-191-6/+6
| |
| * util.startup: Add startup step for parsing command-line optionsMatthew Wild2020-01-191-0/+54
| |
* | util.startup: Ignore unused errno variable [luacheck]Kim Alvefur2019-12-231-1/+1
| |
* | util.startup: Disable plugin installer path creation for now (see comments)Kim Alvefur2019-11-091-2/+4
| |
* | util.startup: Split plugin installer path setup into a separate functionKim Alvefur2019-11-091-4/+11
| |
* | Merge 0.11->trunkKim Alvefur2019-11-041-2/+9
|\|
| * util.startup: Ensure prosody.paths are absolute (see #1430)Kim Alvefur2019-11-041-1/+7
| | | | | | | | | | | | | | | | Normally these paths are injected into the installed 'prosody' executable as absolute paths, but it is possible to override at least the config path via environment variable or command line argument. This makes sure a path relative to pwd stays relative to that instead of the data directory.
| * util.startup: Update config path (fixes #1430)Kim Alvefur2019-11-031-1/+2
| |
* | Merge mod-installer (2019 GSoC by João Duarte)Matthew Wild2019-08-191-1/+7
|\ \
| * | util.startup: Changed the way util.paths.complement_lua_path was being accessedJoão Duarte2019-08-161-1/+1
| | |
| * | util.startup: Reorganized code at setup_plugindirJoão Duarte2019-08-011-3/+3
| | |
| * | util.startup: Now calls a function to complement lua's path/cpathJoão Duarte2019-08-011-13/+2
| | |
| * | util.startup: setup_plugindir now also checks package.cpath for duplicatesJoão Duarte2019-08-011-2/+4
| | |
| * | util.startup: Directly calling lfs.currentdir instead of storing it in a ↵João Duarte2019-08-011-2/+1
| | | | | | | | | | | | local variable
| * | util.startup: Removed/rewrote comments at setup_plugindirJoão Duarte2019-08-011-7/+2
| | |
| * | util.startupt: setup_plugindir now uses lfs.mkdir to check/create directoriesJoão Duarte2019-08-011-4/+1
| | |
| * | util.startupt: I'm now using the resolve_relative_path function from ↵João Duarte2019-08-011-10/+2
| | | | | | | | | | | | util/paths at the setup_plugindir function
| * | util.startup: Improved how .set_plugindir updates prosody.paths.plugins, ↵João Duarte2019-07-261-11/+27
| | | | | | | | | | | | package.path and package.cpath
| * | util.startup: .setup_plugindir now checks if the specified directory for ↵João Duarte2019-07-261-4/+4
| | | | | | | | | | | | custom plugins exists, and creates it if it doesn't
| * | util.startup: The .setup_plugindir function now correctly sets a ↵João Duarte2019-07-261-10/+16
| | | | | | | | | | | | default/specified path for custom plugins
| * | util.startup: Removed unnecessary if clause at startup.set_plugindirJoão Duarte2019-07-251-9/+7
| | |
| * | util.startup: Now it also loads default or configured paths to custom plugin ↵João Duarte2019-07-241-0/+12
| | | | | | | | | | | | directories and creates them
* | | util.startup: Remove tostring call from loggingKim Alvefur2019-07-301-2/+2
|/ / | | | | | | Taken care of by loggingmanager now
* | util.startup: Don't die if there are no config warnings to log (thanks buildbot)Matthew Wild2019-03-201-2/+4
| |
* | util.startup: Log configuration warnings at startupMatthew Wild2019-03-201-0/+6
| |
* | util.startup: Give function a more generic name so it can apply to all warningsMatthew Wild2019-03-201-3/+3
|/
* util.startup: Always reload logging after config (fixes #1284)Kim Alvefur2019-01-061-0/+3
| | | | | This chancged in 6e24a69b03af likely because of confusion about the `reopen-log-files` event which was fired but never hooked.
* util.startup: Set flag when config fully loadedMatthew Wild2018-08-191-0/+1
|
* util.startup: Add a comment marking some compat codeKim Alvefur2018-07-011-0/+1
|
* Merge 0.10->trunkMatthew Wild2018-06-071-1/+1
|
* util.startup: Don't initialize global protection for prosodyctl, for nowMatthew Wild2018-04-181-1/+0
|
* util.startup: Force console logging before initializing logging (see ↵Kim Alvefur2018-04-141-1/+1
| | | | 2fdeb979cc7c)
* util.startup: Initialize logging immediately after configuration is read ↵Matthew Wild2018-04-101-1/+2
| | | | (which is how it used to work)
* util.startup/prosodyctl: Delay enabling global protection until last ↵Kim Alvefur2018-04-061-1/+1
| | | | (silences warning about CFG_PLUGINDIR)