mod_admin_shell: Refactor end of module:load

Meant to improve clarity and make improving easier
This commit is contained in:
Kim Alvefur 2024-11-15 15:48:07 +01:00
parent d89b7fa672
commit 53edd95324

View file

@ -658,7 +658,10 @@ function def_env.module:load(name, hosts)
end
end
return ok, (ok and "Module loaded onto "..count.." host"..(count ~= 1 and "s" or "")) or ("Last error: "..tostring(err));
if not ok then
return ok, "Last error: "..tostring(err);
end
return ok, "Module loaded onto "..count.." host"..(count ~= 1 and "s" or "");
end
describe_command [[module:unload(module, host) - The same, but just unloads the module from memory]]