# HG changeset patch # User Kim Alvefur # Date 1491662562 -7200 # Node ID 91550b6f93d20e636bd4196deb0f8eb086736c67 # Parent 5eec340c75fb52a6f7af6692e4ade224a923ac0f prosodyctl: Point out how default_storage is redundant if storage is a string diff -r 5eec340c75fb -r 91550b6f93d2 prosodyctl --- a/prosodyctl Sat Apr 08 16:33:42 2017 +0200 +++ b/prosodyctl Sat Apr 08 16:42:42 2017 +0200 @@ -973,6 +973,13 @@ 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