mkvm: hash table pour memoire VM

This commit is contained in:
sio user 2024-01-26 09:33:11 +01:00
parent f74728292b
commit ef5701c5d1

View File

@ -41,8 +41,9 @@ create_vm () {
VBoxManage unregistervm --delete "${nom}"
fi
vboxmanage import "${nomova}" --vsys 0 --vmname "${nom}"
if [[ -v vmMem["${nom}" ]]; then
mem=vmMem["${nom}"]
if [[ -v vmMem[${nom}] ]]; then
mem=${vmMem[${nom}]}
echo "machine ${nom}: ${mem} ..."
VBoxManage modifyvm "${nom}" --memory "${mem}"
fi
}