From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH] Improvement of backup iso script
Date: Mon, 02 Jan 2017 14:47:49 +0000 [thread overview]
Message-ID: <1483368469.13949.330.camel@ipfire.org> (raw)
In-Reply-To: <1483367788-911-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 2766 bytes --]
Hi,
thanks for having a look at this :)
On Mon, 2017-01-02 at 15:36 +0100, Jonatan Schlag wrote:
> The backup iso script did not check the arch of the host. On x86_64 host
> the wrong iso was downloaded.
>
> Furthermore, there were some if clauses which could cause trouble which
> I also tried to improve.
> (For example: -e is valid if we have a directory or a file, but we want
> to check for a file only )
>
> Fixes: 11258
>
> Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> ---
> src/scripts/backupiso | 31 ++++++++++++++++++++++++++-----
> 1 file changed, 26 insertions(+), 5 deletions(-)
>
> diff --git a/src/scripts/backupiso b/src/scripts/backupiso
> index 014e8e9..e92f385 100644
> --- a/src/scripts/backupiso
> +++ b/src/scripts/backupiso
> @@ -1,9 +1,29 @@
> #!/bin/sh
> +arch=$(uname -m)
> +
> +case $arch in
> + "i586")
> + arch="i586"
> + echo "Your arch is $arch"
> + ;;
> + "i686")
> + arch="i586"
> + echo "Your arch is $arch"
> + ;;
> + "x86_64")
> + arch="x86_64"
> + echo "Your arch is $arch"
> + ;;
> + *)
> + echo "Arch is not supported"
> + exit 1
> + ;;
> +esac
You could make this a bit shorter by using i?86 for i586 and i686. I also would
recommend to not use quotes for the matches.
I also indent it like this:
case x in
a)
some code
;;
b)
...
;;
esac
> COREVER=$(cat /opt/pakfire/db/core/mine)
> # FIXME: edit this lines before release
> URL="http://download.ipfire.org/releases/ipfire-2.x/2.19-core$COREVER/"
> -ISO="ipfire-2.19.i586-full-core$COREVER.iso"
> +ISO="ipfire-2.19.$arch-full-core$COREVER.iso"
>
> if [ -z $1 ]; then
> echo usage: $0 backup-file
> @@ -13,9 +33,9 @@ fi
> TS=$1
>
> mkdir -p /var/tmp/backupiso
> -cd /var/tmp/backupiso
> +(cd /var/tmp/backupiso || exit
>
> -if [ ! -e ${ISO} ]
> +if [ ! -f ${ISO} ]
> then
> echo "Fetching ${URL}${ISO}"
> wget --quiet -c ${URL}${ISO}
> @@ -26,7 +46,7 @@ wget --quiet -O ${ISO}.md5 ${URL}${ISO}.md5
>
> echo "Checking md5 of ${ISO}"
> md5sum --status -c ${ISO}.md5
> -if [ $? -eq 0 -o $? -eq 24 ]
> +if [ $? -eq 0 ] || [ $? -eq 24 ]
> then
> echo "md5 is OK"
> else
It would be nice to know what 24 is for.
> @@ -35,7 +55,7 @@ else
> wget --quiet -O ${ISO} ${URL}${ISO}
> echo "Checking again md5 of ${ISO}"
> md5sum --status -c ${ISO}.md5
> - if [ $? -eq 0 -o $? -eq 24 ]
> + if [ $? -eq 0 ] || [ $? -eq 24 ]
> then
> echo "md5 is OK"
> else
> @@ -64,3 +84,4 @@ isohybrid $(basename ${ISO} .iso)-${TS}.iso
>
> echo "Cleaning up"
> rm -rf backupiso.${TS}
> +)
Why is this block executed in a sub-shell?
-Michael
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2017-01-02 14:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-02 14:36 Jonatan Schlag
2017-01-02 14:47 ` Michael Tremer [this message]
[not found] <1483369499.2414.6@mail01.ipfire.org>
2017-01-02 15:07 ` 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=1483368469.13949.330.camel@ipfire.org \
--to=michael.tremer@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