From: Jonatan Schlag Date: Sun, 16 Jun 2024 16:02:44 +0000 (+0200) Subject: initscripts fkt: Fix shebang X-Git-Tag: v2.29-core189~65^2~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80c1cb5a0a2f9c13612a5a43c92d4657e0d06717;p=ipfire-2.x.git initscripts fkt: Fix shebang 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 Signed-off-by: Michael Tremer --- diff --git a/src/initscripts/system/functions b/src/initscripts/system/functions index 46bef41c36..125aa1dc62 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 #