summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2023-06-16 14:15:44 +0200
committerRaito Bezarius <masterancpp@gmail.com>2023-06-16 19:43:40 +0200
commit627a8838fa728e0f2bbe1c9fbe9b19e49e9cefc9 (patch)
tree5573518be6b147de69d183fed679e13f4f474d01 /nixos
parent7088e386ff9eb2be501290354cc31faa9c0d6fbb (diff)
nixosTests.kexec: do not use module argument `config`
It is deprecated now.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/kexec.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/kexec.nix b/nixos/tests/kexec.nix
index 5c0f0b60c853..4d1be497b8ba 100644
--- a/nixos/tests/kexec.nix
+++ b/nixos/tests/kexec.nix
@@ -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")