Fix output file name for openstack images.

No further conversion is necessary for this
VM file target, so there is no need to append
the '.raw' suffix here.

Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2014-10-29 19:44:34 +00:00
parent 573e7cca4b
commit 6943fb9ff2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/release-vmimage/; revision=273836
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ vm_create_openstack() {
-b /boot/pmbr -p freebsd-boot/bootfs:=/boot/gptboot \
-p freebsd-swap/swapfs::1G \
-p freebsd-ufs/rootfs:=${VMBASE} \
-o ${VMIMAGE}.raw
-o ${VMIMAGE}
return 0
}

View File

@ -125,7 +125,7 @@ vm_create_openstack() {
-b /boot/pmbr -p freebsd-boot/bootfs:=/boot/gptboot \
-p freebsd-swap/swapfs::1G \
-p freebsd-ufs/rootfs:=${VMBASE} \
-o ${VMIMAGE}.raw
-o ${VMIMAGE}
return 0
}