diff options
author | Thomas F Herbert <therbert@redhat.com> | 2019-04-14 15:12:10 -0400 |
---|---|---|
committer | Jan Gelety <jgelety@cisco.com> | 2019-04-18 06:31:47 +0000 |
commit | 3384969a087da01d261c3b9e381add2c43721b6a (patch) | |
tree | 0ff4a733f0aa4778bc97e4894121c402879bf6a3 /resources/tools/disk-image-builder/centos/build-listmaker.sh | |
parent | 661035ac4ce6e51649f302fe2b7a8218257c0587 (diff) |
Centos 7.6-1810 image update.
Add python36 and update qemu to 2.12.
add boost-filesystem
Change-Id: I89bba0b807be6d6c2d98b2f07faae9c31b3370e1
Signed-off-by: Thomas F Herbert <therbert@redhat.com>
Diffstat (limited to 'resources/tools/disk-image-builder/centos/build-listmaker.sh')
-rwxr-xr-x | resources/tools/disk-image-builder/centos/build-listmaker.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/resources/tools/disk-image-builder/centos/build-listmaker.sh b/resources/tools/disk-image-builder/centos/build-listmaker.sh index 6aa5493a58..98adb905f6 100755 --- a/resources/tools/disk-image-builder/centos/build-listmaker.sh +++ b/resources/tools/disk-image-builder/centos/build-listmaker.sh @@ -31,9 +31,14 @@ else RELEASE_NAME="csit-centos-7.4-1711-listmaker" PACKER_TEMPLATE="listmaker/centos-7.4-1711.json" else - echo "Please provide OS as parameter:" - echo "Options: ${0} [centos-7-1511|centos-7.3-1611|centos-7.4-1711]" - exit 1 + if [ "$1" = "centos-7.6-1810" ]; then + RELEASE_NAME="csit-centos-7.6-1810-listmaker" + PACKER_TEMPLATE="listmaker/centos-7.6-1810.json" + else + echo "Please provide OS as parameter:" + echo "Options: ${0} [centos-7.3-1611|centos-7.4-1711|centos-7.6-1810]" + exit 1 + fi fi fi |