X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=src%2Fscripts%2Fbackupiso;h=d15833d5d7ac42cd787b2658f34309e1ef607f38;hb=50d1bbf0f56b76148f10bbe2195df45ad3b60cb3;hp=dab1d6dc9309beb5b973afc327c5562056bcdee9;hpb=03d0b8c7e8486fca41674ddac51543edad300f4d;p=people%2Fpmueller%2Fipfire-2.x.git diff --git a/src/scripts/backupiso b/src/scripts/backupiso index dab1d6dc93..d15833d5d7 100644 --- a/src/scripts/backupiso +++ b/src/scripts/backupiso @@ -1,9 +1,52 @@ #!/bin/sh -COREVER=$(cat /opt/pakfire/db/core/mine) # FIXME: edit this lines before release -URL="http://download.ipfire.org/releases/ipfire-2.x/2.15-core$COREVER/" -ISO="ipfire-2.15.i586-full-core$COREVER.iso" +IPFVER=2.21 +COREVER=$(cat /opt/pakfire/db/core/mine) + +arch=$(uname -m) + +case "${arch}" in + aarch64|x86_64) + ;; + i?86) + arch="i586" + ;; + *) + echo "Arch is not supported" >&2 + exit 1 + ;; +esac + +URL="https://downloads.ipfire.org/releases/ipfire-2.x/$IPFVER-core$COREVER/" +ISO="ipfire-$IPFVER.$arch-full-core$COREVER.iso" + +makeiso() { + local dir="${1}" + local output="${2}" + + local args= + + # Add EFI options when EFI image is present + if [ -e "${dir}/boot/isolinux/efiboot.img" ]; then + args="${args} -eltorito-alt-boot -e boot/isolinux/efiboot.img -no-emul-boot" + fi + + # Compose ISO + mkisofs -J -r -V "IPFire ${IPFVER} ${arch}" \ + -b boot/isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table \ + -c boot/isolinux/boot.catalog \ + ${args} ${dir} > ${output} + + # Add DOS paritition table + if [ -e "${dir}/boot/isolinux/efiboot.img" ]; then + isohybrid --uefi ${output} + else + isohybrid ${output} + fi + + return 0 +} if [ -z $1 ]; then echo usage: $0 backup-file @@ -15,7 +58,7 @@ TS=$1 mkdir -p /var/tmp/backupiso cd /var/tmp/backupiso -if [ ! -e ${ISO} ] +if [ ! -f ${ISO} ] then echo "Fetching ${URL}${ISO}" wget --quiet -c ${URL}${ISO} @@ -26,7 +69,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 @@ -35,7 +78,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 @@ -53,13 +96,14 @@ cp -pr backupiso.tmp.${TS} backupiso.${TS} umount backupiso.tmp.${TS} rm -r backupiso.tmp.${TS} -echo "RESTORE_FILE=${TS}.ipf" >> backupiso.${TS}/boot/unattended.conf -cp /var/ipfire/backup/${TS}.ipf backupiso.${TS} +# Copy backup file to disk +cp "/var/ipfire/backup/${TS}.ipf" "backupiso.${TS}/backup.ipf" + +# Add a version tag +touch "backupiso.${TS}/backup-${TS}.media" echo "Running mkisofs" -mkisofs -J -r -V "ipfire backup ${TS}" \ - -b boot/isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table \ - -c boot/isolinux/boot.catalog backupiso.${TS} > $(basename ${ISO} .iso)-${TS}.iso +makeiso backupiso.${TS} $(basename ${ISO} .iso)-${TS}.iso echo "Cleaning up" rm -rf backupiso.${TS}