mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
qemu: Fix augeas support for migration ports
Commit e3ef20d7 allows user to configure migration ports range via qemu.conf. However, it forgot to update augeas definition file and even the test data was malicious. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
34adf622a3
commit
d9be5a7157
@ -82,6 +82,8 @@ module Libvirtd_qemu =
|
||||
| int_entry "keepalive_count"
|
||||
|
||||
let network_entry = str_entry "migration_address"
|
||||
| int_entry "migration_port_min"
|
||||
| int_entry "migration_port_max"
|
||||
|
||||
(* Each entry in the config is one of the following ... *)
|
||||
let entry = vnc_entry
|
||||
|
@ -70,5 +70,5 @@ module Test_libvirtd_qemu =
|
||||
{ "keepalive_count" = "5" }
|
||||
{ "seccomp_sandbox" = "1" }
|
||||
{ "migration_address" = "127.0.0.1" }
|
||||
{ "migration_port_min" = "1234" }
|
||||
{ "migration_port_max" = "12345" }
|
||||
{ "migration_port_min" = "49152" }
|
||||
{ "migration_port_max" = "49215" }
|
||||
|
Loading…
x
Reference in New Issue
Block a user