3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 18:08:46 +02:00
pbot/applets/pbot-vm/host/config/vm-exec.json
Pragmatic Software 951b771b9c pbot-vm: vm-exec can now select VM; can be configured by vm-exec.json file
The vm-exec command now recognizes the following options:

    -vm-serial -vm-heart -vm-cid -vm-vport -vm

The -vm option accepts a name and configures the serial,
heart, cid and vport appropriately.

The vm-exec command can be configured by /host/config/vm-exec.json.
2022-02-15 11:28:47 -08:00

22 lines
406 B
JSON

{
"machines" : {
"pbot-vm" : {
"serial" : 5555,
"heart" : 5556,
"cid" : 7,
"vport" : 5555
},
"pbot-test-vm" : {
"serial" : 7777,
"heart" : 7778,
"cid" : 42,
"vport" : 5555
}
},
"aliases" : {
"fedora-amd64" : "pbot-vm",
"test" : "pbot-test-vm"
},
"default-machine" : "fedora-amd64"
}