From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4ZRwwC4qmjz337q for ; Tue, 1 Apr 2025 18:08:11 +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 RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "R10" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4ZRww80yg9z336t for ; Tue, 1 Apr 2025 18:08:08 +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 RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4ZRww76bCzzCD; Tue, 1 Apr 2025 18:08:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1743530888; 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=hZLH0o3gmJLniD9moHpCUluSTG+aMDT/sTN8xoyfpB4=; b=Nb0BhrUR2j6WkoujjbLKL3dj7auD4qCzhSeEfUmQ1G875nKjeKjT9JR25xr2SfdPra+cCa uFuRj7p+SY2klFe83rqvA2DBY7m63bEt8XxIzDU48xVoLEYUilBhr5JyDuQEc2wq5yjvrz XA/ydYMlpIBNzgDnw+Iz27/rqBdd6yXA89GK7WGkWqDwfTtExqw3eAyMZVFCDTt+eHaG0Z K9xxme5faL0D5n8RJNp+89xV5FErR0c9cMQ1pJO+0PBCZVd/04KEPdlIbU5BvMGzUxU1Vn 2vfQiHWbRgwCjywsXnVZSpiQmU5h+wi0Swlhfe2HyXhK3oiv2qHk1I2gQnZ66w== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1743530888; 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=hZLH0o3gmJLniD9moHpCUluSTG+aMDT/sTN8xoyfpB4=; b=ssWK/twzamfl/ttkm9kM+2PrZPZ45t7G7XeFJ3eVp0JD3yyLv6vqj0J2qChUVN4po8Nh9j GvHsYf8Xe4KoR0Cw== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH 4/6] backup.pl: Fixes bug13737 - restarts ipsec to use the restored certs etc Date: Tue, 1 Apr 2025 20:08:00 +0200 Message-ID: <20250401180802.19784-4-adolf.belka@ipfire.org> In-Reply-To: <20250401180802.19784-1-adolf.belka@ipfire.org> References: <20250401180802.19784-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - This adds a check if the ipsec server is enabled. If it is then ipsecctrl is run to restart ipsec and ensure that the restored certs are all being used. - Tested this out on my vm testbed and confirmed that with this I could restore a backup and make the client connection as previously set up. - Without this I had to press the Save button on the ipsec WUI page to get the certs etc being used. Fixes: bug13737 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- config/backup/backup.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/backup/backup.pl b/config/backup/backup.pl index 1c8c87d0a..a6d1467fd 100644 --- a/config/backup/backup.pl +++ b/config/backup/backup.pl @@ -307,6 +307,9 @@ restore_backup() { # start collectd after restore /etc/rc.d/init.d/collectd start + # Reload ipsec certificates and secrets after doing a restore + &General::system('/usr/local/bin/ipsecctrl', 'R'); + return 0 } -- 2.49.0