};
testScript = ''
+ import os
+
+
def setConfig(machine, config):
machine.copy_from_host(config, "/etc/nixos/configuration.nix")
a.wait_for_unit("syncthing-autoregister.service")
setConfig(a, configurationWithDeviceIDs)
verifyDeviceIDSet(a, "a")
+ a.copy_from_vm("${deviceIDFilename}")
+
+ b.copy_from_host(
+ os.path.join(
+ os.environ["out"],
+ os.path.basename("${deviceIDFilename}"),
+ ),
+ "${deviceIDFilename}",
+ )
+ b.succeed("chown syncthing ${deviceIDFilename}")
+ setConfig(b, configurationWithDeviceIDs)
+ verifyDeviceIDSet(b, "a")
'';
})