diff --git a/distros b/distros index 163d461..d2e7fec 100644 --- a/distros +++ b/distros @@ -59,6 +59,16 @@ case $distro in echo "Cloud image not available!"; exit 1 fi ;; + buster) IMG_USER="debian" + if [[ $arch = "amd64" ]]; then + IMG_URL="https://cdimage.debian.org/cdimage/openstack/current-10" + IMG_NAME="debian-10-openstack-amd64.qcow2" + virt_ostype="debian" + virt_osvariant="debian10" + else + echo "Cloud image not available!"; exit 1 + fi + ;; *) echo "Cloud image not available!"; exit 1 ;; esac \ No newline at end of file diff --git a/virt-install-cloud.sh b/virt-install-cloud.sh index d31a9b3..9fb5d6d 100755 --- a/virt-install-cloud.sh +++ b/virt-install-cloud.sh @@ -1,8 +1,8 @@ #!/bin/bash # Heavily Modified Script By: Brielle Bruns -# Date: 07/03/2018 +# Date: 10/30/2019 # URL: https://git.sosdg.org/brielle/virt-install-cloud -# Version: 1.1.1 +# Version: 1.1.2 # # Originally based on: # virt-install-cloud.sh : script to start an OpenStack cloud image on kvm