Add Deb 10 buster to distros
parent
d8a4fda790
commit
22633f2e80
10
distros
10
distros
|
@ -59,6 +59,16 @@ case $distro in
|
||||||
echo "Cloud image not available!"; exit 1
|
echo "Cloud image not available!"; exit 1
|
||||||
fi
|
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
|
*) echo "Cloud image not available!"; exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Heavily Modified Script By: Brielle Bruns
|
# Heavily Modified Script By: Brielle Bruns
|
||||||
# Date: 07/03/2018
|
# Date: 10/30/2019
|
||||||
# URL: https://git.sosdg.org/brielle/virt-install-cloud
|
# URL: https://git.sosdg.org/brielle/virt-install-cloud
|
||||||
# Version: 1.1.1
|
# Version: 1.1.2
|
||||||
#
|
#
|
||||||
# Originally based on:
|
# Originally based on:
|
||||||
# virt-install-cloud.sh : script to start an OpenStack cloud image on kvm
|
# virt-install-cloud.sh : script to start an OpenStack cloud image on kvm
|
||||||
|
|
Loading…
Reference in New Issue