From db43b8a313e7aa95cf0f60d7cd343b795ee87d6c Mon Sep 17 00:00:00 2001 From: root Date: Sat, 7 Mar 2026 05:26:44 +0100 Subject: [PATCH] Fix ShellCheck SC2034: suppress unused PAKMGR warning --- networktuning.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/networktuning.sh b/networktuning.sh index 39c02df..2b9f295 100644 --- a/networktuning.sh +++ b/networktuning.sh @@ -96,6 +96,7 @@ fi OS_ID=$(. /etc/os-release && echo "${ID}") OS_VERSION=$(. /etc/os-release && echo "${VERSION_ID}" | cut -d. -f1) +# shellcheck disable=SC2034 case "$OS_ID" in ubuntu|debian) PAKMGR="apt-get -y"