migrator: Also migrate host/non-user archive data

Needed for things like mod_http_file_share
This commit is contained in:
Kim Alvefur 2022-01-09 15:52:50 +01:00
parent e9b2be9e44
commit 07c3f35ab8

View file

@ -202,9 +202,8 @@ local migration_runner = async.runner(function (job)
local destination = assert(output_driver:open(store, typ));
local migrate = assert(migrate_once[typ], "Unknown store type: "..typ);
if typ == "keyval" then -- host data
migrate(origin, destination, nil);
end
migrate(origin, destination, nil); -- host data
for user in users(origin, host) do
migrate(origin, destination, user);