cvmts/qemu: support snapshots properly

This commit is contained in:
modeco80
2024-06-19 18:03:10 -04:00
parent b485e7f689
commit 0d34bb1c8e
2 changed files with 7 additions and 11 deletions

View File

@@ -60,7 +60,8 @@ async function start() {
// Fire up the VM
let def: QemuVmDefinition = {
id: Config.collabvm.node,
command: Config.qemu.qemuArgs
command: Config.qemu.qemuArgs,
snapshot: Config.qemu.snapshots
};
VM = new QemuVM(def);