Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
9053edacd8 | |||
beb62c9f3d |
@ -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
|
||||
|
@ -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
6
debian/changelog
vendored
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user