aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2025-02-13 18:01:43 +0000
committerMatthew Wild <mwild1@gmail.com>2025-02-13 18:01:43 +0000
commit5cb42c94bdd9c2fda924b3742d53df7c621819e8 (patch)
tree74716af125f3522c1484b2adcf7adb44b19c8d4e /util/prosodyctl
parent1d130946fe3bd9f48aaa1af54efc3160c2cfd4b8 (diff)
parented5dfc1a624b74e8a93fc896f6b3238be4256607 (diff)
downloadprosody-master.tar.gz
prosody-master.zip
Merge 13.0->trunkHEADorigin/mastermaster
Diffstat (limited to 'util/prosodyctl')
-rw-r--r--util/prosodyctl/check.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua
index ac8cc9c1..b5e3fbe3 100644
--- a/util/prosodyctl/check.lua
+++ b/util/prosodyctl/check.lua
@@ -632,6 +632,12 @@ local function check(arg)
print(" Both mod_pep_simple and mod_pep are enabled but they conflict");
print(" with each other. Remove one.");
end
+ if all_modules:contains("posix") then
+ print("");
+ print(" mod_posix is loaded in your configuration file, but it has");
+ print(" been deprecated. You can safely remove it.");
+ end
+
for host, host_config in pairs(config) do --luacheck: ignore 213/host
if type(rawget(host_config, "storage")) == "string" and rawget(host_config, "default_storage") then
print("");