From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Gibson To: passt-dev@passt.top Subject: [PATCH 01/18] tests: Remove no longer needed /usr/bin/bash link Date: Fri, 15 Jul 2022 15:21:24 +1000 Message-ID: <20220715052141.890703-2-david@gibson.dropbear.id.au> In-Reply-To: <20220715052141.890703-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0801616404124073923==" --===============0801616404124073923== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit AFAICT the symlink we created in mbuto from /usr/bin/bash to /bin/sh was for the benefit of a dhclient-script which used /usr/bin/bash as its interpreter (e.g. in Fedora). That was a bit risky if the script really did require bash and we linked it to dash or another shell. We now supply our own custom dhclient-script, so we don't need the link any more. Signed-off-by: David Gibson --- test/passt.mbuto | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/passt.mbuto b/test/passt.mbuto index 968c1cd..2990020 100755 --- a/test/passt.mbuto +++ b/test/passt.mbuto @@ -19,8 +19,7 @@ KMODS="${KMODS:- virtio_net virtio_pci}" LINKS="${LINKS:- ash,dash,bash /init - ash,dash,bash /bin/sh - ash,dash,bash /usr/bin/bash}" + ash,dash,bash /bin/sh}" DIRS="${DIRS} /tmp /sbin" -- 2.36.1 --===============0801616404124073923==--