# HG changeset patch # User Kim Alvefur # Date 1459102169 -7200 # Node ID 17408ddd34b0ec2313a131fa032299f926d52e33 # Parent d3231a4d6a60c8b8dafad6f2436069d26cf73003 mod_migrate: Check that the hostname is known, or yell and abort (thanks Link Mauve) diff -r d3231a4d6a60 -r 17408ddd34b0 mod_migrate/mod_migrate.lua --- a/mod_migrate/mod_migrate.lua Sat Mar 26 23:25:07 2016 +0100 +++ b/mod_migrate/mod_migrate.lua Sun Mar 27 20:09:29 2016 +0200 @@ -9,6 +9,9 @@ if not migrate_to then return print("Usage: prosodyctl mod_migrate example.com [-] [users]*"); end + if not prosody.hosts[host] then + return print(("The host %q is not know by Prosody."):format(host)); + end sm.initialize_host(host); um.initialize_host(host); local module = module:context(host);