From: bbitsch@ipfire.org
To: development@lists.ipfire.org
Subject: Re: [PATCH] backup.pl: Fix Bug13799 - addon restore not working
Date: Fri, 20 Dec 2024 11:55:58 +0100 [thread overview]
Message-ID: <ccb01dc0-82a0-4b46-a9ad-be4108c5e348@ipfire.org> (raw)
In-Reply-To: <20241220100405.73336-1-adolf.belka@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1000 bytes --]
Reviewed-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
On 20.12.24 11:04, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
> - This fixes the existence check for the addon .ipf file from a check of existence
> of a directory to a check of existence of a file.
>
> Suggested-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
> Tested-by: Bernhard Bitsch <bbitsch(a)ipfire.org>
> Fixes: Bug13799
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> config/backup/backup.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/config/backup/backup.pl b/config/backup/backup.pl
> index 3b10b8707..b618576e1 100644
> --- a/config/backup/backup.pl
> +++ b/config/backup/backup.pl
> @@ -285,7 +285,7 @@ make_addon_backup() {
> restore_addon_backup() {
> local name="${1}"
>
> - if [ -d "/tmp/${name}.ipf" ]; then
> + if [ -e "/tmp/${name}.ipf" ]; then
> mv "/tmp/${name}.ipf" "/var/ipfire/backup/addons/backup/${name}.ipf"
> fi
>
>
prev parent reply other threads:[~2024-12-20 10:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-20 10:04 Adolf Belka
2024-12-20 10:55 ` bbitsch [this message]
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=ccb01dc0-82a0-4b46-a9ad-be4108c5e348@ipfire.org \
--to=bbitsch@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