From dcbd35e4b1ddf03eaf73041f936ea2344c7910b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 21 Apr 2026 18:38:02 +0200 Subject: [PATCH] tools: Fix shellcheck issues in config_template.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix shellcheck warnings and notes identified by running shellcheck --severity=style. Signed-off-by: Fabiano FidĂȘncio --- tools/osbuilder/rootfs-builder/template/config_template.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/osbuilder/rootfs-builder/template/config_template.sh b/tools/osbuilder/rootfs-builder/template/config_template.sh index 4543bab688..600e577e7e 100644 --- a/tools/osbuilder/rootfs-builder/template/config_template.sh +++ b/tools/osbuilder/rootfs-builder/template/config_template.sh @@ -11,12 +11,15 @@ OS_VERSION=${OS_VERSION:-DEFAULT_VERSION} +# shellcheck disable=SC2034 PACKAGES="systemd iptables udevlib.so" # Init process must be one of {systemd,kata-agent} +# shellcheck disable=SC2034 INIT_PROCESS=systemd # List of zero or more architectures to exclude from build, # as reported by `uname -m` +# shellcheck disable=SC2034 ARCH_EXCLUDE_LIST=() # [When uncommented,] Allow the build to fail without generating an error # For more info see: https://github.com/kata-containers/osbuilder/issues/190