From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] backup.pl: fix Bug12817 - directories missing in backup after include file changed to relat>
Date: Mon, 28 Mar 2022 18:24:39 +0200 [thread overview]
Message-ID: <8999a7e1-833f-a056-f308-0757e3b2afbb@ipfire.org> (raw)
In-Reply-To: <2d8f8c3d-5ebb-146a-9bd3-adae43812715@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3858 bytes --]
Hi Michael,
On 28/03/2022 16:30, Adolf Belka wrote:
> Hi Michael,
>
> On 28/03/2022 16:08, Michael Tremer wrote:
>> Hello Adolf,
>>
>>> On 25 Mar 2022, at 12:22, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>>>
>>> From: Bernhard Bitsch <bbitsch(a)ipfire.org>
>>>
>>> - The change of the backup include file from absolute paths to
>>> relative paths in CU164
>>> commit
>>> https://git.ipfire.org/?p=ipfire-2.x.git;a=commit;h=c7e0d73e7cfd7be95db9d0a5f3392b8241813d5b
>>> resulted in 20 core function directories no longer being backed
>>> up. Additionally a
>>> similar effect occurred with some addon backups
>>
>> Why is this happening? Is it because tar relied on the shell to
>> expand the glowing characters?
> I don't know. I found the issue, together with someone on the forum.
> Bernhard suggested the fix, which I tested, but I don't understand the
> issues behind the problem. Maybe Bernhard has more input on what might
> be causing the problem.
>>
>> In that case, the file list should be changed that tar knows what
>> files to pack and what not. I wouldn’t want to rely on globbing
>> unless we have a reason that forces us.
> Okay, will try and see if I can understand the basis for why the
> problem is occurring with the change of names from absolute to relative.
>
I have tried to look at the code and see what the problem is. I can
understand the essence of what the code is doing but not why it is going
wrong, or at least yet.
What a comparison of the files that are saved with the ones that are not
saved shows that the ones not saved are those that would get selected by
wildcards in the include file. All the ones saved look to be those with
explicit filenames with no wild cards.
So something in either the process-includes subroutine or in the tar
command is not working with wildcards.
I will try and see if I can set a small code loop up to see where the
problem occurs.
Regards,
Adolf.
> Regards,
> Adolf.
>>
>>> - Fix applied here proposed by Bernhard Bitsch and tested on a vm
>>> testbed system and
>>> confirmed to fix the problem. Backup of all directories again
>>> being done.
>>>
>>> Fixes: Bug12817
>>> Tested-By: Adolf Belka <adolf.belka(a)ipfire.org>
>>> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
>>> ---
>>> config/backup/backup.pl | 22 ++++++++++++----------
>>> 1 file changed, 12 insertions(+), 10 deletions(-)
>>>
>>> diff --git a/config/backup/backup.pl b/config/backup/backup.pl
>>> index a2337cf23..c7dbc6cae 100644
>>> --- a/config/backup/backup.pl
>>> +++ b/config/backup/backup.pl
>>> @@ -35,16 +35,18 @@ list_addons() {
>>> process_includes() {
>>> local include
>>>
>>> - for include in $@; do
>>> - local file
>>> - while read -r file; do
>>> - for file in ${file}; do
>>> - if [ -e "/${file}" ]; then
>>> - echo "${file}"
>>> - fi
>>> - done
>>> - done < "${include}"
>>> - done | sort -u
>>> + pushd / >/dev/null
>>> + for include in $@; do
>>> + local file
>>> + while read -r file; do
>>> + for file in ${file}; do
>>> + if [ -e "/${file}" ]; then
>>> + echo "${file}"
>>> + fi
>>> + done
>>> + done < "${include}"
>>> + done | sort -u
>>> + popd >/dev/null
>>> }
>>>
>>> make_backup() {
>>> --
>>> 2.35.1
>>>
>>
>
--
Sent from my laptop
next prev parent reply other threads:[~2022-03-28 16:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-25 12:22 Adolf Belka
2022-03-25 13:26 ` Bernhard Bitsch
2022-03-28 14:08 ` Michael Tremer
2022-03-28 14:30 ` Adolf Belka
2022-03-28 16:24 ` Adolf Belka [this message]
2022-03-28 16:40 ` Michael Tremer
2022-03-28 18:22 ` Adolf Belka
2022-03-28 19:26 ` Bernhard Bitsch
2022-03-29 10:23 ` Michael Tremer
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=8999a7e1-833f-a056-f308-0757e3b2afbb@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