about summary refs log tree commit diff
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2022-01-19 11:43:01 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2022-01-19 11:43:01 +0100
commit741a585052c99be0bf2633c6195be57a464b962e (patch)
tree43be6e292941e5a755446dbaa8403cff105de7d2
parentedd7f7c6e180cbb2bcee4b61586a4a4e199e48b7 (diff)
nixos/tests/libreswan: fixup 739c51ae4ef
-rw-r--r--nixos/tests/libreswan.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/libreswan.nix b/nixos/tests/libreswan.nix
index 56ab908aed9a3..ff3d2344a6799 100644
--- a/nixos/tests/libreswan.nix
+++ b/nixos/tests/libreswan.nix
@@ -89,7 +89,7 @@ in
           """
           Sends a message as Alice to Bob
           """
-          bob.execute("nc -lu ::0 1234 >/tmp/msg >&2 &")
+          bob.execute("nc -lu ::0 1234 >/tmp/msg &")
           alice.sleep(1)
           alice.succeed(f"echo '{msg}' | nc -uw 0 bob 1234")
           bob.succeed(f"grep '{msg}' /tmp/msg")
@@ -100,7 +100,7 @@ in
           Starts eavesdropping on Alice and Bob
           """
           match = "src host alice and dst host bob"
-          eve.execute(f"tcpdump -i br0 -c 1 -Avv {match} >/tmp/log >&2 &")
+          eve.execute(f"tcpdump -i br0 -c 1 -Avv {match} >/tmp/log &")
 
 
       start_all()