]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
tools/hv: reduce resouce usage in hv_get_dns_info helper
authorOlaf Hering <olaf@aepfle.de>
Mon, 2 Dec 2024 12:04:10 +0000 (13:04 +0100)
committerWei Liu <wei.liu@kernel.org>
Mon, 9 Dec 2024 18:44:15 +0000 (18:44 +0000)
Remove the usage of cat. Replace the shell process with awk with 'exec'.
Also use a generic shell because no bash specific features will be used.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
Acked-by: Wei Liu <wei.liu@kernel.org>
Link: https://lore.kernel.org/r/20241202120432.21115-1-olaf@aepfle.de
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <20241202120432.21115-1-olaf@aepfle.de>

tools/hv/hv_get_dns_info.sh

index 058c17b46ffcddbd921e52bb1f6c661f467b9d0a..268521234d4b0695fa061fe0adc70fec3e0fb015 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 # This example script parses /etc/resolv.conf to retrive DNS information.
 # In the interest of keeping the KVP daemon code free of distro specific
@@ -10,4 +10,4 @@
 # this script can be based on the Network Manager APIs for retrieving DNS
 # entries.
 
-cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'
+exec awk '/^nameserver/ { print $2 }' /etc/resolv.conf 2>/dev/null