aboutsummaryrefslogtreecommitdiffstats
path: root/util/prosodyctl.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2012-02-08 15:33:36 +0100
committerKim Alvefur <zash@zash.se>2012-02-08 15:33:36 +0100
commitd75e3d56b5128e4489f635a412cb12bf02e9f18f (patch)
treed6941404f66528ee398fee9570a5e1c8c899f6bb /util/prosodyctl.lua
parente5684a78b0556e09bda2ffca2666dc8ca76f7cdb (diff)
downloadprosody-d75e3d56b5128e4489f635a412cb12bf02e9f18f.tar.gz
prosody-d75e3d56b5128e4489f635a412cb12bf02e9f18f.zip
util.prosodyctl: In the register command, check that the virtual exists before proceeding.
Diffstat (limited to 'util/prosodyctl.lua')
-rw-r--r--util/prosodyctl.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/prosodyctl.lua b/util/prosodyctl.lua
index d0045abc..6e9eed4e 100644
--- a/util/prosodyctl.lua
+++ b/util/prosodyctl.lua
@@ -121,7 +121,11 @@ function adduser(params)
return false, "invalid-hostname";
end
- local provider = prosody.hosts[host].users;
+ local host = prosody.hosts[host];
+ if not host then
+ return false, "no-such-host";
+ end
+ local provider = host.users;
if not(provider) or provider.name == "null" then
usermanager.initialize_host(host);
end