diff options
author | Matthew Wild <mwild1@gmail.com> | 2025-02-06 15:43:23 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2025-02-06 15:43:23 +0000 |
commit | 2fef4f5d9cc2c59def9321899145cf3417880b15 (patch) | |
tree | 962760aea7faf5a54dd62878dd94f77a154b468a | |
parent | e7f77807c971fab9e0cacf149dcbcefd6a4a47f4 (diff) | |
download | prosody-2fef4f5d9cc2c59def9321899145cf3417880b15.tar.gz prosody-2fef4f5d9cc2c59def9321899145cf3417880b15.zip |
prosodyctl: Fix check for whether to show init system warning
Overlooked from testing.
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -181,7 +181,7 @@ local function has_init_system() --> which end local function service_command_warning(service_command) - if true or prosody.installed and configmanager.get("*", "prosodyctl_service_warnings") ~= false then + if prosody.installed and configmanager.get("*", "prosodyctl_service_warnings") ~= false then show_warning("ERROR: Use of 'prosodyctl %s' is disabled in this installation because", service_command); local init = has_init_system() |