diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-05-19 01:22:33 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-05-19 15:24:15 +0200 |
commit | c447344158a0a8d11d364200de27aff2dc57a47e (patch) | |
tree | 61fe3164ad2c8277833c61f00d9296848e6cecda | |
parent | b4d41ac4b6992d76af162c77a9414d12b6e39f21 (diff) | |
download | passt-c447344158a0a8d11d364200de27aff2dc57a47e.tar passt-c447344158a0a8d11d364200de27aff2dc57a47e.tar.gz passt-c447344158a0a8d11d364200de27aff2dc57a47e.tar.bz2 passt-c447344158a0a8d11d364200de27aff2dc57a47e.tar.lz passt-c447344158a0a8d11d364200de27aff2dc57a47e.tar.xz passt-c447344158a0a8d11d364200de27aff2dc57a47e.tar.zst passt-c447344158a0a8d11d364200de27aff2dc57a47e.zip |
demo/pasta: Fix bad sleep directive
'sleep' always needs an argument, this was meant to introduce
a 2 seconds delay.
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r-- | test/demo/pasta | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/demo/pasta b/test/demo/pasta index 4bfea80..506d948 100644 --- a/test/demo/pasta +++ b/test/demo/pasta @@ -110,7 +110,7 @@ nl say Now the other way around... nl say we can use a loopback address -sleep +sleep 2 hostb nc -l -p 31337 sleep 2 ns echo "Hello from the namespace" | nc -N 127.0.0.1 31337 |