diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-08 16:42:42 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-08 16:42:42 +0200 |
commit | 54fea3aeec367884bd249ca317662eac07c66861 (patch) | |
tree | a39a58f63a2faca3f763a5939f7b08c83008993e /prosodyctl | |
parent | 699dab7c6d9eec4565b11f76d1e27d17321176df (diff) | |
download | prosody-54fea3aeec367884bd249ca317662eac07c66861.tar.gz prosody-54fea3aeec367884bd249ca317662eac07c66861.zip |
prosodyctl: Point out how default_storage is redundant if storage is a string
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -973,6 +973,13 @@ function commands.check(arg) print(" For more information see https://prosody.im/doc/storage"); end end + for host, config in pairs(config) do + if type(rawget(config, "storage")) == "string" and rawget(config, "default_storage") then + print(""); + print(" The 'default_storage' option is not needed if 'storage' is set to a string."); + break; + end + end local require_encryption = set.intersection(all_options, set.new({"require_encryption", "c2s_require_encryption", "s2s_require_encryption"})):empty(); local ssl = dependencies.softreq"ssl"; if not ssl then |