mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
15 lines
278 B
Python
15 lines
278 B
Python
![]() |
from common.fs.qemuvolume import QEMUVolume
|
||
|
|
||
|
|
||
|
class VirtualDiskImage(QEMUVolume):
|
||
|
|
||
|
extension = 'vdi'
|
||
|
qemu_format = 'vdi'
|
||
|
ovf_uri = None
|
||
|
|
||
|
def get_uuid(self):
|
||
|
import uuid
|
||
|
with open(self.image_path) as image:
|
||
|
image.seek(392)
|
||
|
return uuid.UUID(bytes_le=image.read(16))
|