portmanager: Don't auto-start network services under prosodyctl

This commit is contained in:
Matthew Wild 2020-02-05 17:41:40 +00:00
parent 5fadc67e4f
commit 84c6ebd007

View file

@ -170,7 +170,7 @@ end
local function register_service(service_name, service_info)
table.insert(services[service_name], service_info);
if not active_services:get(service_name) then
if not active_services:get(service_name) and prosody.process_type == "prosody" then
log("debug", "No active service for %s, activating...", service_name);
local ok, err = activate(service_name);
if not ok then