Software / code / prosody
Comparison
prosodyctl @ 6486:64146196b142
prosodyctl: Add 'require_encryption' to list of deprecated options pointed out by the check command
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 21 Oct 2014 12:47:53 +0200 |
| parent | 6405:61801dacc90b |
| child | 6501:71b6e8b48a12 |
comparison
equal
deleted
inserted
replaced
| 6473:7c8f58d2b331 | 6486:64146196b142 |
|---|---|
| 814 end | 814 end |
| 815 end | 815 end |
| 816 if not what or what == "config" then | 816 if not what or what == "config" then |
| 817 print("Checking config..."); | 817 print("Checking config..."); |
| 818 local deprecated = set.new({ | 818 local deprecated = set.new({ |
| 819 "bosh_ports", "disallow_s2s", "no_daemonize", "anonymous_login", | 819 "bosh_ports", "disallow_s2s", "no_daemonize", "anonymous_login", "require_encryption", |
| 820 }); | 820 }); |
| 821 local known_global_options = set.new({ | 821 local known_global_options = set.new({ |
| 822 "pidfile", "log", "plugin_paths", "prosody_user", "prosody_group", "daemonize", | 822 "pidfile", "log", "plugin_paths", "prosody_user", "prosody_group", "daemonize", |
| 823 "umask", "prosodyctl_timeout", "use_ipv6", "use_libevent", "network_settings" | 823 "umask", "prosodyctl_timeout", "use_ipv6", "use_libevent", "network_settings" |
| 824 }); | 824 }); |