From patchwork Sat Jul 29 07:27:46 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arne Fitzenreiter X-Patchwork-Id: 7034 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) server-digest SHA384 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4RCbh70wfVz3wgc for ; Sat, 29 Jul 2023 07:28:07 +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) server-digest SHA384 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4RCbh33LbkzfG; Sat, 29 Jul 2023 07:28:03 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4RCbh32SbPz2yZg; Sat, 29 Jul 2023 07:28:03 +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 "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4RCbh11Tycz2xZK for ; Sat, 29 Jul 2023 07:28:01 +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 4RCbgv4j47zfG; Sat, 29 Jul 2023 07:27:55 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1690615678; 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=LeUav6e+fzSYzPQsI1B40u9Br29NwNJGUkgr6QfLnMc=; b=gUB3X1lFdr+D1N6rApXg7AKS7VilU/kAdjrGbiqmt7NknycsIpuF/HzWEaCx83IxczwfdI cKahhXjGiYWlPRBg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1690615678; 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=LeUav6e+fzSYzPQsI1B40u9Br29NwNJGUkgr6QfLnMc=; b=VWqTcgupfIMYmlrHIw+dT0h1x5yKx268DP9L4FoohHsFFtOK7nYMAtOAO1MeoDszqeboAb hwgqSYFNn2+M1qMIO5W/dHWxUw3SzNLZsIYofOXf+lk7YxxcoOs8KUZToFcCaA4UomYvf+ 30sWjCmsYPgZq0HNxn6S+BUX1R4/1ba9+Zm8FQu/KN10qrgPrQE3UUgqSOIF98qEKOTr1j A/L3mYfMbIWWHSwpNI/ZGtcz/ZudFekc0sYKH1qS5tq5VD6o1kBQmUtvB//ldVWCKRYdta CFb6rY4mMp4gciaT9FVfBrOf1n9rLwTfkCcf1gjAJvRr71nYgdYBrFbONjI7Uw== From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH] core177: apply local ssh config after update sshd Date: Sat, 29 Jul 2023 09:27:46 +0200 Message-Id: <20230729072746.3452-1-arne_f@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: Arne Fitzenreiter Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Arne Fitzenreiter --- config/rootfiles/core/177/update.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/rootfiles/core/177/update.sh b/config/rootfiles/core/177/update.sh index 52ef205b0..c4a37794c 100644 --- a/config/rootfiles/core/177/update.sh +++ b/config/rootfiles/core/177/update.sh @@ -129,6 +129,9 @@ ldconfig # Filesytem cleanup /usr/local/bin/filesystem-cleanup +# Apply local configuration to sshd_config +/usr/local/bin/sshctrl + # Start services /etc/init.d/sshd restart /etc/init.d/unbound reload