From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefano Brivio To: passt-dev@passt.top Subject: [PATCH 4/7] test: In pasta demo, issue /sbin/dhclient instead of dhclient Date: Thu, 21 Jul 2022 14:06:34 +0200 Message-ID: <20220721120637.232914-5-sbrivio@redhat.com> In-Reply-To: <20220721120637.232914-1-sbrivio@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0289456059729513324==" --===============0289456059729513324== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This was dependent on my own environment where I usually have /sbin in $PATH. If that's missing, given that we're running dhclient as user, we won't find it. Signed-off-by: Stefano Brivio --- test/demo/pasta | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/demo/pasta b/test/demo/pasta index be117b3..342671f 100644 --- a/test/demo/pasta +++ b/test/demo/pasta @@ -75,7 +75,7 @@ ns ip link show sleep 3 say Let's configure IPv4 first... sleep 2 -ns dhclient -4 --no-pid +ns /sbin/dhclient -4 --no-pid sleep 2 ns ip addr show sleep 5 @@ -85,7 +85,7 @@ say SLAAC is already done, but we can also nl say get another address via DHCPv6. sleep 3 -ns dhclient -6 --no-pid +ns /sbin/dhclient -6 --no-pid sleep 3 nl -- 2.35.1 --===============0289456059729513324==--