Compare commits

...

2 Commits

Author SHA1 Message Date
9053edacd8 Bump version to 0.9.4 2020-11-10 15:33:50 -05:00
beb62c9f3d Readd erroneously removed blk_file.write 2020-11-10 15:33:29 -05:00
5 changed files with 17 additions and 1 deletions

View File

@ -21,6 +21,10 @@ To get started with PVC, read the [Cluster Architecture document](https://parall
## Changelog
#### v0.9.4
* Fixes major bug in OVA parser
#### v0.9.3
* Fixes bugs with image & OVA upload parsing

View File

@ -316,6 +316,8 @@ def upload_ova(pool, name, ova_size):
# Open the temporary blockdev and seek to byte 0
blk_file = open(temp_blockdev, 'wb')
blk_file.seek(0)
# Write the contents of vmdk_file into blk_file
blk_file.write(vmdk_file.read())
# Close blk_file (and flush the buffers)
blk_file.close()
# Close vmdk_file

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
pvc (0.9.4-0) unstable; urgency=high
* Fixes major bug in OVA parser
-- Joshua M. Boniface <joshua@boniface.me> Tue, 10 Nov 2020 15:33:50 -0500
pvc (0.9.3-0) unstable; urgency=high
* Fixes bugs with image & OVA upload parsing

View File

@ -19,6 +19,10 @@ To get started with PVC, read the [Cluster Architecture document](https://parall
## Changelog
#### v0.9.4
* Fixes major bug in OVA parser
#### v0.9.3
* Fixes bugs with image & OVA upload parsing

View File

@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance
import pvcnoded.MetadataAPIInstance as MetadataAPIInstance
# Version string for startup output
version = '0.9.3'
version = '0.9.4'
###############################################################################
# PVCD - node daemon startup program