# HG changeset patch # User Matthew Wild # Date 1738856603 0 # Node ID e0bbf85edc210032f04c737519a8f85254d491f7 # Parent a08065207ef0311dc06b78cfe36c4f98127cc605 prosodyctl: Fix check for whether to show init system warning Overlooked from testing. diff -r a08065207ef0 -r e0bbf85edc21 prosodyctl --- a/prosodyctl Thu Feb 06 15:04:38 2025 +0000 +++ b/prosodyctl Thu Feb 06 15:43:23 2025 +0000 @@ -181,7 +181,7 @@ 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()