From patchwork Sun Jun 16 16:02:44 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonatan Schlag X-Patchwork-Id: 7879 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4W2Hqr5QLQz3x1l for ; Sun, 16 Jun 2024 16:03:36 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4W2Hqr2qFTz5mp; Sun, 16 Jun 2024 16:03:36 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4W2Hqr2GP5z33FL; Sun, 16 Jun 2024 16:03:36 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) client-signature ECDSA (secp384r1)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4W2Hqk4kFgz2xtd for ; Sun, 16 Jun 2024 16:03:30 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4W2Hqk2Lb1z5nk; Sun, 16 Jun 2024 16:03:30 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1718553810; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZGU/6y2nUMStvmCNVH7JLdDrVlh0bzQQQV1Mv2Zf1dE=; b=6FheXw7LBCraU94Eq/uIRVkJD9lum42VXjiOF3nnrN1yEUFOqSpwQdiLlINdIMKFAZmrt3 3nlSoInzpo7FyuBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1718553810; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZGU/6y2nUMStvmCNVH7JLdDrVlh0bzQQQV1Mv2Zf1dE=; b=a/+GRV3cCk7TLKzEZ2mWx7x25ZQM5Gw1f3zcr0pi6wr6RhQqGbC9EiP6Y7gZw0Y5WvuGI+ dodOfE929SDtc92I7mPBuObLgokM+/2Tq+537nnOY0nKGBYWdcb2nypvPa3dpVUgT60PVC +ghvuWpR00PSTiC5ogAxHtN6yI/urH1sQMfCpPNjh74p9zX3XenlRvEy4W6Vngdi9npzPv DIvqosn6xqFzs+h19BGwKv/qzQuggLvcZCrWWNdjvNfPdQ+Icn7IHCPPgSJxGfgLey+ttv KSQqqRaGxNdCSbJnueWzHxURV/IRgtDzNsCt/GLW85k5LsRwgfLvT6301F+blQ== 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> References: <20240616160245.18865-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Message-ID-Hash: BM7GQQECWFKDCDVCMLRALUJM3NWDR37Q X-Message-ID-Hash: BM7GQQECWFKDCDVCMLRALUJM3NWDR37Q X-MailFrom: jonatan.schlag@ipfire.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.8 Precedence: list List-Id: IPFire development talk Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: 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/functions 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 #