From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4c8KsM1clpz2xSN for ; Sat, 23 Aug 2025 14:57:11 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R11" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4c8KsM1PB0z2xQT for ; Sat, 23 Aug 2025 14:57:11 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [172.28.1.161]) (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 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E5" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4c8KsL5KCVz26 for ; Sat, 23 Aug 2025 14:57:10 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1755961030; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=VwykeE03ve/Q5xzuC8O64mpPQibhLDJobfaqsUvrp7Q=; b=leIgJzg0nBfKXO2fXngsKV7en4nYbGvHxyev264fWT6iahyS5bNqI9UQ36k9FDvGhEbGRT /JEWrPTDRAZsvEDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1755961030; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=VwykeE03ve/Q5xzuC8O64mpPQibhLDJobfaqsUvrp7Q=; b=Wn0eosY+wzh66vQzLr/yfdAIk55UPm2dwTPm7dZ5Xhjhkq9n/mAuxRN66Okv7jNyQXgyOv seId9agu6hGjrNVowfwuzdrPqy9HiFJp7ZLk9emdX8Q6fIimtxYpU92KZh35PL9zSjaI93 98ZbWiy/EE8EFaUmDBUMHVgxw+6m1vaTEB+zBNhXqOvb0KIBZ0yoN3+v3XEKsv58CKqbrt 8LwTLXSFFnwYmKArd5cQbL0xEVK+XjZbjg2/PhyDrUgpvyBj8f0wUtStiDnmlqty6dJRLV LsZZ21qoVDSRaBsQpsEEjipLEd67M0UxRa7T7Utdihyga5NEAK8JyQ+FRzYKJA== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4c8KsL3kfVz2xT0; Sat, 23 Aug 2025 14:57:10 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 97469fbdd20c7c47b9d1f2df6b57f60ccda16560 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: c293ac4b282da94f2d4b7449738c4be2a590c86e X-Git-Newrev: 97469fbdd20c7c47b9d1f2df6b57f60ccda16560 Message-Id: <4c8KsL3kfVz2xT0@people01.haj.ipfire.org> Date: Sat, 23 Aug 2025 14:57:10 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, master has been updated via 97469fbdd20c7c47b9d1f2df6b57f60ccda16560 (commit) from c293ac4b282da94f2d4b7449738c4be2a590c86e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 97469fbdd20c7c47b9d1f2df6b57f60ccda16560 Author: Adolf Belka Date: Sat Aug 23 15:46:09 2025 +0200 backup.pl: Restart openvpn daemons after restore. - As the daemons are running when the restore is done then if the daemons are not restarted the running daemon stays with the previous config and not with the restored version. Tested-by: Adolf Belka Signed-off-by: Adolf Belka Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: config/backup/backup.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Difference in files: diff --git a/config/backup/backup.pl b/config/backup/backup.pl index c9bc14355..e79f510c6 100644 --- a/config/backup/backup.pl +++ b/config/backup/backup.pl @@ -349,8 +349,10 @@ restore_backup() { rm /var/log/pakfire.log fi - # Update the OpenVPN configuration + # Update the OpenVPN configuration and restart the openvpn daemons sudo -u nobody /srv/web/ipfire/cgi-bin/ovpnmain.cgi + /etc/init.d/openvpn-n2n restart + /etc/init.d/openvpn-rw restart return 0 } hooks/post-receive -- IPFire 2.x development tree