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 | 260dfd3d708c21a49a318f705c3c24d3a4c74608 (patch) | |
tree | d652d2047a42a97372cee18b0690eb659fc83cdd | |
parent | a05e313bb259ace44bd79bfce243741b1ae2f772 (diff) | |
download | prosody-260dfd3d708c21a49a318f705c3c24d3a4c74608.tar.gz prosody-260dfd3d708c21a49a318f705c3c24d3a4c74608.zip |
prosodyctl: check: Don't complain about c2s_ssl or s2s_ssl being in VirtualHost sections, that's supported
-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 |