From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] backup.pl: Fix #12626 backup/include.user entries will not override backup/exclude
Date: Fri, 21 May 2021 14:22:50 +0200 [thread overview]
Message-ID: <20210521122250.7788-1-adolf.belka@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 2439 bytes --]
- Current situation is that any restrictions in the exclude file will not
be overwritten by the include.user file
- For example the global exclude file has *.tmp preventing any tmp files
being backed up from the globally included IPFire files
If a user has some specific tmp files they want to backup and include
them in the include.user file they will not override the global
exclude file.
- This fix does the backup of the global and user backups as two separate
events and then appends them. This means that any tmp files in the
include.user file will be backed up.
- The backups are created as a global tar file and then have the user
tar file appended and then the combined file gzipped and given the .ipf
suffix. This has to be done this was as gzipped files can not be
appended to each other whereas tar files can.
Fixes: 12626
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/backup/backup.pl | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/config/backup/backup.pl b/config/backup/backup.pl
index d2e531252..8dffbf2e1 100644
--- a/config/backup/backup.pl
+++ b/config/backup/backup.pl
@@ -57,12 +57,21 @@ make_backup() {
make_addon_backup "${addon}"
done
- tar cvzf "${filename}" \
+ # Backup using global exclude/include definitions
+ tar cvf "${filename}" \
--exclude-from="/var/ipfire/backup/exclude" \
+ $(process_includes "/var/ipfire/backup/include") \
+ "$@"
+
+ # Backup using user exclude/include definitions and append to global backup
+ tar rvf "${filename}" \
--exclude-from="/var/ipfire/backup/exclude.user" \
- $(process_includes "/var/ipfire/backup/include" "/var/ipfire/backup/include.user") \
+ $(process_includes "/var/ipfire/backup/include.user") \
"$@"
+ # gzip the combined global/user backup and use .ipf suffix
+ gzip --suffix .ipf "${filename}"
+
return 0
}
@@ -206,7 +215,7 @@ main() {
local filename="${1}"
if [ -z "${filename}" ]; then
- filename="/var/ipfire/backup/${NOW}.ipf"
+ filename="/var/ipfire/backup/${NOW}"
fi
make_backup "${filename}" $(find_logfiles)
@@ -216,7 +225,7 @@ main() {
local filename="${1}"
if [ -z "${filename}" ]; then
- filename="/var/ipfire/backup/${NOW}.ipf"
+ filename="/var/ipfire/backup/${NOW}"
fi
make_backup "${filename}"
--
2.31.1
reply other threads:[~2021-05-21 12:22 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210521122250.7788-1-adolf.belka@ipfire.org \
--to=adolf.belka@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox