|
|
|
|
@ -78,6 +78,7 @@ function usage_subcommand ()
|
|
|
|
|
printf " fedora28 Fedora 28 fedora\n" |
|
|
|
|
printf " fedora28-atomic Fedora 28 Atomic Host fedora\n" |
|
|
|
|
printf " ubuntu1604 Ubuntu 16.04 LTS (Xenial Xerus) ubuntu\n" |
|
|
|
|
printf " ubuntu1804 Ubuntu 18.04 LTS (Bionic Beaver) ubuntu\n" |
|
|
|
|
printf "\n" |
|
|
|
|
printf "EXAMPLES\n" |
|
|
|
|
printf " $prog create foo\n" |
|
|
|
|
@ -287,6 +288,12 @@ function fetch_images ()
|
|
|
|
|
IMAGE_URL=https://cloud-images.ubuntu.com/releases/16.04/release |
|
|
|
|
LOGIN_USER=ubuntu |
|
|
|
|
;; |
|
|
|
|
ubuntu1804) |
|
|
|
|
QCOW=ubuntu-18.04-server-cloudimg-amd64.img |
|
|
|
|
OS_VARIANT="ubuntu17.10" |
|
|
|
|
IMAGE_URL=https://cloud-images.ubuntu.com/releases/18.04/release |
|
|
|
|
LOGIN_USER=ubuntu |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
die "${DISTRO} not a supported OS. Run 'kvm-install-vm create help'." |
|
|
|
|
;; |
|
|
|
|
|