# HG changeset patch # User Kim Alvefur # Date 1659703273 -7200 # Node ID 05ca75309fa007fb2a1b08967cd1ce08638011c7 # Parent 9184fe3d489aaac09abc849e8339cb6105a95bdb mod_admin_shell: Remove obsolete module:load() argument from 0.8 time This 'config' argument was removed without explanation in d8dbf569766c diff -r 9184fe3d489a -r 05ca75309fa0 plugins/mod_admin_shell.lua --- a/plugins/mod_admin_shell.lua Tue Aug 02 19:26:26 2022 +0200 +++ b/plugins/mod_admin_shell.lua Fri Aug 05 14:41:13 2022 +0200 @@ -575,14 +575,14 @@ return true; end -function def_env.module:load(name, hosts, config) +function def_env.module:load(name, hosts) hosts = get_hosts_with_module(hosts); -- Load the module for each host local ok, err, count, mod = true, nil, 0; for host in hosts do if (not modulemanager.is_loaded(host, name)) then - mod, err = modulemanager.load(host, name, config); + mod, err = modulemanager.load(host, name); if not mod then ok = false; if err == "global-module-already-loaded" then