From 8f1c757c873ac67eab1d981042791f24e21caf61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavol=20=C5=BD=C3=A1=C4=8Dik?= Date: Tue, 15 Apr 2025 16:14:45 +0200 Subject: [PATCH] beakerlib: Use ncat explicitly instead of nc This is to make sure that we do not use netcat, which does not work in the unix socket test. --- .../Expose-TuneD-API-to-the-Unix-Domain-Socket/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/beakerlib/Expose-TuneD-API-to-the-Unix-Domain-Socket/runtest.sh b/tests/beakerlib/Expose-TuneD-API-to-the-Unix-Domain-Socket/runtest.sh index 8802f11..a1ffdb8 100755 --- a/tests/beakerlib/Expose-TuneD-API-to-the-Unix-Domain-Socket/runtest.sh +++ b/tests/beakerlib/Expose-TuneD-API-to-the-Unix-Domain-Socket/runtest.sh @@ -24,7 +24,7 @@ send() { local socket=/run/tuned/tuned.sock # local send_only=--send-only - printf "$data" | nc $send_only -U /run/tuned/tuned.sock + printf "$data" | ncat $send_only -U /run/tuned/tuned.sock } rlJournalStart