From 4e83520b0ef47b2416019ea274a537da10329e7d Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Thu, 16 Jan 2025 13:02:46 +0100 Subject: [PATCH] ixll: Fix ping(8)s that require all options precede address The default ping(8) shipped with alpine does not support `ping -c1`, but happily executes `ping -c1 `. Therefore, make sure that the address is always the last argument. --- utils/libll.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/libll.sh b/utils/libll.sh index d42f94ab..a4441832 100644 --- a/utils/libll.sh +++ b/utils/libll.sh @@ -9,7 +9,7 @@ llping() { local iface="$1" shift - ping -L ff02::1%$iface "$@" + ping -L "$@" ff02::1%$iface }