Changeset

8247:2c386ee5cd5c

prosodyctl: Use all enabled hosts if no hostnames passed to cert import
author Kim Alvefur <zash@zash.se>
date Mon, 18 Sep 2017 17:06:35 +0200
parents 8242:177873dc9cf3
children 8248:259e0010a6d4
files prosodyctl
diffstat 1 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/prosodyctl	Sat Sep 16 17:24:13 2017 +0200
+++ b/prosodyctl	Mon Sep 18 17:06:35 2017 +0200
@@ -870,8 +870,15 @@
 	while arg[1] and prosody.hosts[ arg[1] ] do
 		table.insert(hostnames, table.remove(arg, 1));
 	end
+	if hostnames[1] == nil then
+		for host in pairs(prosody.hosts) do
+			if host ~= "*" and config.get(host, "enabled") ~= false then
+				table.insert(hostnames, host);
+			end
+		end
+	end
 	if not arg[1] or arg[1] == "--help" then -- Probably forgot the path
-		show_usage("cert import HOSTNAME [HOSTNAME+] /path/to/certs [/other/paths/]+",
+		show_usage("cert import [HOSTNAME+] /path/to/certs [/other/paths/]+",
 			"Copies certificates to "..cert_basedir);
 		return 1;
 	end