modules/admin-full: support installing multiple packages at once

This commit is contained in:
Jo-Philipp Wich 2011-10-15 05:27:06 +00:00
parent 00f23f60f6
commit 594e333a77

View file

@ -83,10 +83,13 @@ function action_packages()
end
if uinst then
install[uinst], out, err = ipkg.install(uinst)
stdout[#stdout+1] = out
stderr[#stderr+1] = err
changes = true
local pkg
for pkg in luci.util.imatch(uinst) do
install[uinst], out, err = ipkg.install(pkg)
stdout[#stdout+1] = out
stderr[#stderr+1] = err
changes = true
end
end
-- Remove packets