From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 1/2] exclude: Fix bug13736 - stop backup of qos perl programs Date: Sat, 01 Mar 2025 13:46:01 +0100 Message-ID: <20250301124602.5489-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2840306940412839891==" List-Id: --===============2840306940412839891== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - The exclude file only had the qos.pl file from the bin directory excluded f= rom the backup. This meant that 5 other perl programs were being backed up and the= refore any restore would overwrite new updated versions such as the makeqosscript= s.pl file. - This addition to the backup exclude file now excludes all .pl files from th= e qos/bin directory. - This also means that any restore from earlier backups that included the oth= er .pl files will not restore thosde files. - Tested out on an IPFire physical system. Fixes: bug13736 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- config/backup/exclude | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/backup/exclude b/config/backup/exclude index 4dc1607a2..fb6477d26 100644 --- a/config/backup/exclude +++ b/config/backup/exclude @@ -5,7 +5,7 @@ var/ipfire/ethernet/settings var/ipfire/firewall/bin/* var/ipfire/ovpn/openssl/* var/ipfire/proxy/calamaris/bin/* -var/ipfire/qos/bin/qos.pl +var/ipfire/qos/bin/*.pl var/ipfire/suricata/oinkmaster.conf var/ipfire/suricata/ruleset-sources var/ipfire/urlfilter/blacklists/*/*.db --=20 2.48.1 --===============2840306940412839891==--