mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 19:45:21 +00:00
ce7ae55ea1
Add a virtlockd-admin-sock can serves the admin protocol for the virtlockd daemon and define a virtlockd:///{system,session} URI scheme for connecting to it. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
17 lines
450 B
Plaintext
17 lines
450 B
Plaintext
module Test_virtlockd =
|
|
let conf = "log_level = 3
|
|
log_filters=\"3:remote 4:event\"
|
|
log_outputs=\"3:syslog:libvirtd\"
|
|
log_buffer_size = 64
|
|
max_clients = 10
|
|
admin_max_clients = 10
|
|
"
|
|
|
|
test Virtlockd.lns get conf =
|
|
{ "log_level" = "3" }
|
|
{ "log_filters" = "3:remote 4:event" }
|
|
{ "log_outputs" = "3:syslog:libvirtd" }
|
|
{ "log_buffer_size" = "64" }
|
|
{ "max_clients" = "10" }
|
|
{ "admin_max_clients" = "10" }
|