mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
11 lines
313 B
Python
11 lines
313 B
Python
from common.fs.loopbackvolume import LoopbackVolume
|
|
from common.tools import log_check_call
|
|
|
|
|
|
class VirtualBoxVolume(LoopbackVolume):
|
|
|
|
extension = 'vdi'
|
|
|
|
def _create(self, e):
|
|
self.image_path = e.image_path
|
|
log_check_call(['/usr/bin/qemu-img', 'create', '-f', 'vdi', self.image_path, str(self.size) + 'M'])
|