diff options
author | Kim Alvefur <zash@zash.se> | 2021-06-20 17:11:59 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-06-20 17:11:59 +0200 |
commit | af4822c0362961ba2c4710973cc2a8f04ba0f652 (patch) | |
tree | e3ac943b26480a7fafd2fc612abfcb1898901af0 /util | |
parent | 1904899421263d198abe4002d9a2c49c86866f20 (diff) | |
download | prosody-af4822c0362961ba2c4710973cc2a8f04ba0f652.tar.gz prosody-af4822c0362961ba2c4710973cc2a8f04ba0f652.zip |
util.prosodyctl.check: Add knowledge of the global-only 'use_ipv4' setting
Diffstat (limited to 'util')
-rw-r--r-- | util/prosodyctl/check.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua index f3bae1a5..6248cc6c 100644 --- a/util/prosodyctl/check.lua +++ b/util/prosodyctl/check.lua @@ -44,7 +44,7 @@ local function check(arg) }); local known_global_options = set.new({ "pidfile", "log", "plugin_paths", "prosody_user", "prosody_group", "daemonize", - "umask", "prosodyctl_timeout", "use_ipv6", "use_libevent", "network_settings", + "umask", "prosodyctl_timeout", "use_ipv6", "use_ipv4", "use_libevent", "network_settings", "network_backend", "http_default_host", "statistics_interval", "statistics", "statistics_config", "plugin_server", "installer_plugin_path", "gc", "limits", |