fixes for vmware

This commit is contained in:
Neil Hanlon 2022-11-19 17:01:55 -05:00
parent 4777fc3db0
commit 8b099f255c
Signed by: neil
GPG Key ID: 705BC21EC3C70F34
1 changed files with 3 additions and 2 deletions

View File

@ -151,13 +151,14 @@ class ImageBuild:
"VMware": {"format": "vmdk", "convertOptions": ["-o", "subformat=streamOptimized"], "provider": "vmware_desktop"}
}
output = f"{_map[self.variant]['format']}" #type: ignore
options = f"{_map[self.variant]['convertOptions']}" if 'convertOptions' in _map[self.variant].keys() else '' #type: ignore
options = _map[self.variant]['convertOptions'] if 'convertOptions' in _map[self.variant].keys() else '' #type: ignore
provider = f"{_map[self.variant]['provider']}" # type: ignore
self.prepare_vagrant(provider)
self.stage_commands = [
["qemu-img", "convert", "-c", "-f", "raw", "-O", output, *options, lambda: f"{STORAGE_DIR}/{self.target_uuid}.body", f"{self.outdir}/{self.outname}.{output}"],
["tar", "--strip-components=2", "-czf", f"{self.outdir}/{self.outname}.box", f"{self.outdir}"]
["tar", "-C", self.outdir, "-czf", f"/tmp/{self.outname}.box", '.'],
["mv", f"/tmp/{self.outname}.box", self.outdir]
]
if self.stage_commands: