Auto find greatest Fedora cloud image sub-release
Fedora cloud images have sub-releases in their filename. It is not exacly clear how this is generated but we do know how we can determine the greatest programatically. Change-Id: I7fc56897c681fe037db211c290edcdd23cdd5d5b
This commit is contained in:
parent
b536dbba8e
commit
72442ba656
@ -2,27 +2,3 @@ export DISTRO_NAME=fedora
|
|||||||
export DIB_RELEASE=${DIB_RELEASE:-32}
|
export DIB_RELEASE=${DIB_RELEASE:-32}
|
||||||
export EFI_BOOT_DIR="EFI/fedora"
|
export EFI_BOOT_DIR="EFI/fedora"
|
||||||
|
|
||||||
# Note the filename URL has a "sub-release" in it
|
|
||||||
# http:// ... Fedora-Cloud-Base-25-1.3.x86_64.qcow2
|
|
||||||
# ^^^
|
|
||||||
# It's not exactly clear how this is generated, or how we could
|
|
||||||
# determine this programatically. Other projects have more
|
|
||||||
# complicated regex-based scripts to find this, which we can examine
|
|
||||||
# if this becomes an issue ... see thread at [1]
|
|
||||||
#
|
|
||||||
# [1] https://lists.fedoraproject.org/archives/list/cloud@lists.fedoraproject.org/thread/2WFO2FKIGUQYRQXIR35UVJGRHF7LQENJ/
|
|
||||||
|
|
||||||
if [[ ${DIB_RELEASE} == '28' ]]; then
|
|
||||||
export DIB_FEDORA_SUBRELEASE=1.1
|
|
||||||
elif [[ ${DIB_RELEASE} == '29' ]]; then
|
|
||||||
export DIB_FEDORA_SUBRELEASE=1.2
|
|
||||||
elif [[ ${DIB_RELEASE} == '30' ]]; then
|
|
||||||
export DIB_FEDORA_SUBRELEASE=1.2
|
|
||||||
elif [[ ${DIB_RELEASE} == '31' ]]; then
|
|
||||||
export DIB_FEDORA_SUBRELEASE=1.9
|
|
||||||
elif [[ ${DIB_RELEASE} == '32' ]]; then
|
|
||||||
export DIB_FEDORA_SUBRELEASE=1.6
|
|
||||||
else
|
|
||||||
echo "Unsupported Fedora release"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
@ -44,8 +44,9 @@ else
|
|||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
BASE_IMAGE_FILE=${BASE_IMAGE_FILE:-Fedora-Cloud-Base-$DIB_RELEASE-$DIB_FEDORA_SUBRELEASE.$ARCH.qcow2}
|
SUBRELEASE=$(curl -Ls $DIB_CLOUD_IMAGES/ | grep -o -P '(?<=Fedora-Cloud-Base-'${DIB_RELEASE}'-).*(?=.'${ARCH}'.qcow2")' | sort -r | head -1)
|
||||||
BASE_IMAGE_TAR=Fedora-Cloud-Base-$DIB_RELEASE-$DIB_FEDORA_SUBRELEASE.$ARCH.tgz
|
BASE_IMAGE_FILE=${BASE_IMAGE_FILE:-Fedora-Cloud-Base-$DIB_RELEASE-$SUBRELEASE.$ARCH.qcow2}
|
||||||
|
BASE_IMAGE_TAR=Fedora-Cloud-Base-$DIB_RELEASE-$SUBRELEASE.$ARCH.tgz
|
||||||
IMAGE_LOCATION=$DIB_CLOUD_IMAGES/$BASE_IMAGE_FILE
|
IMAGE_LOCATION=$DIB_CLOUD_IMAGES/$BASE_IMAGE_FILE
|
||||||
CACHED_IMAGE=$DIB_IMAGE_CACHE/$BASE_IMAGE_FILE
|
CACHED_IMAGE=$DIB_IMAGE_CACHE/$BASE_IMAGE_FILE
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user