mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
b8240fe704
Reference the storage via node name rather than inlining it. This is the approach that will be used with -blockdev/blockdev-add since it allows more control and is more future proof. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: John Ferlan <jferlan@redhat.com>
24 lines
361 B
JSON
24 lines
361 B
JSON
{
|
|
"node-name": "node-f",
|
|
"read-only": true,
|
|
"cache": {
|
|
"direct": true,
|
|
"no-flush": false
|
|
},
|
|
"driver": "raw",
|
|
"file": "node-s"
|
|
}
|
|
{
|
|
"driver": "vvfat",
|
|
"dir": "/var/somefiles",
|
|
"floppy": false,
|
|
"rw": false,
|
|
"node-name": "node-s",
|
|
"cache": {
|
|
"direct": true,
|
|
"no-flush": false
|
|
},
|
|
"read-only": true,
|
|
"discard": "unmap"
|
|
}
|