nixosTests.kexec: do not use module argument config

It is deprecated now.
This commit is contained in:
Raito Bezarius 2023-06-16 14:15:44 +02:00
parent 7088e386ff
commit 627a8838fa

View File

@ -37,7 +37,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
# Kexec node1 to the toplevel of node2 via the kexec-boot script
node1.succeed('touch /run/foo')
node1.fail('hello')
node1.execute('${nodes.node2.config.system.build.kexecTree}/kexec-boot', check_output=False)
node1.execute('${nodes.node2.system.build.kexecTree}/kexec-boot', check_output=False)
node1.connected = False
node1.connect()
node1.wait_for_unit("multi-user.target")