From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH v2 17/18] initscripts fkt: Fix shebang Date: Sun, 16 Jun 2024 18:02:44 +0200 Message-ID: <20240616160245.18865-18-jonatan.schlag@ipfire.org> In-Reply-To: <20240616160245.18865-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3121696068848725760==" List-Id: --===============3121696068848725760== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable We use features only available in bash. So we should state correctly that the script should be executed in bash. As sh is a symlink to bash this makes not differences on a ipfire system. But my linter is less chatty with this change. Signed-off-by: Jonatan Schlag --- src/initscripts/system/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/system/functions b/src/initscripts/system/functi= ons index 6d72e4119..0775d74a1 100644 --- a/src/initscripts/system/functions +++ b/src/initscripts/system/functions @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash ############################################################################= ### # = # # IPFire.org - A linux based firewall = # --=20 2.39.2 --===============3121696068848725760==--