From patchwork Tue Jul 28 18:04:46 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 3280 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 (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4BGPhm6cH0z3xVB for ; Tue, 28 Jul 2020 18:04:56 +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 (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4BGPhl3Q5Xz1fr; Tue, 28 Jul 2020 18:04:55 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4BGPhl1vH6z306p; Tue, 28 Jul 2020 18:04:55 +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 (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4BGPhk0T29z2xYR for ; Tue, 28 Jul 2020 18:04:54 +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 (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 4BGPhj11csz1fr; Tue, 28 Jul 2020 18:04:53 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1595959493; 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; bh=6Ihp8SO8dNBM8DR/8p5EVVIGzl1a61UBLEOyT512gUs=; b=fzplrDGESgL4smxuPptKrt0wVrCvR4rf+kmzoF4YQ1KefywTOMUd+OUeQHqmu1DhQC3l4v /0QPI060GFXx67Bg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1595959493; 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; bh=6Ihp8SO8dNBM8DR/8p5EVVIGzl1a61UBLEOyT512gUs=; b=ejbX1eknaQ96I0ASj1lAbDbDEOukwMMEXxIX8/jv6cpINXcI2LeC4xWI4BfjHd1nnpiySg Oclq7NsapFY27jNH5C0YdGPVbgRAUaGAvyB8klYSgrRbKjDU6CLhHHsWCRrNYeV/3IbxnY GP3zdEt4kGNkcDkrp6/OJGv40v4OdbOTQY5KChaSqYtNku2lMzUTZU09IerDv41YOrOrX6 wJchBVYMFLm9xGx5b8l9FjQJ5DHxqb0XbKYcA7NttPG20rPowjUWhkCsE41HRgSrmSwo/O 9wIvkSZJO/j3rG/qAE0JcA+Nz5kUDcszyRWlGtbX6F48n7De661KztvL4+B41Q== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] network: Fix typo for MTU value Date: Tue, 28 Jul 2020 18:04:46 +0000 Message-Id: <20200728180446.15494-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Reported here: https://community.ipfire.org/t/strange-etc-init-d-networking-any-for-blue/2831 Signed-off-by: Michael Tremer --- src/initscripts/networking/any | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/initscripts/networking/any b/src/initscripts/networking/any index 8d2300950..0cf107f48 100644 --- a/src/initscripts/networking/any +++ b/src/initscripts/networking/any @@ -34,7 +34,7 @@ elif [ "$(basename $0)" == "blue" ]; then NETADDRESS="${BLUE_NETADDRESS}" NETMASK="${BLUE_NETMASK}" DEVICE="${BLUE_DEV}" - MTU="${GREEN_MTU}" + MTU="${BLUE_MTU}" elif [ "$(basename $0)" == "orange" ]; then DEVICE="${ORANGE_DEV}" ADDRESS="${ORANGE_ADDRESS}"