diff options
author | Kim Alvefur <zash@zash.se> | 2015-10-21 13:37:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-10-21 13:37:26 +0200 |
commit | 1a728fad755b3ba2b5383ac0ee6273d19e498e0f (patch) | |
tree | d652d2047a42a97372cee18b0690eb659fc83cdd /prosodyctl | |
parent | b7e3bf93eae9c6ae373d2f555b9d1fb0bbc2056d (diff) | |
download | prosody-1a728fad755b3ba2b5383ac0ee6273d19e498e0f.tar.gz prosody-1a728fad755b3ba2b5383ac0ee6273d19e498e0f.zip |
prosodyctl: check: Don't complain about c2s_ssl or s2s_ssl being in VirtualHost sections, that's supported
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -890,7 +890,7 @@ function commands.check(arg) for name in pairs(options) do if name:match("^interfaces?") or name:match("_ports?$") or name:match("_interfaces?$") - or name:match("_ssl$") then + or (name:match("_ssl$") and not name:match("^[cs]2s_ssl$")) then misplaced_options:add(name); end end |