mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 14:35:25 +00:00
76e1720c4f
Most of the augeas test files use ::CONFIG:: to pull in the master config file for testing. This ensures that entries added to the config file are actually tested by augeas. This identified the missing admin_max_clients example in the virtlogd config file, which in turn prompted a change in description of the max_clients parameter, since these daemons don't have separate readonly & readwrite sockets. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
12 lines
335 B
Plaintext
12 lines
335 B
Plaintext
module Test_virtlogd =
|
|
::CONFIG::
|
|
|
|
test Virtlogd.lns get conf =
|
|
{ "log_level" = "3" }
|
|
{ "log_filters" = "3:remote 4:event" }
|
|
{ "log_outputs" = "3:syslog:virtlogd" }
|
|
{ "max_clients" = "1024" }
|
|
{ "admin_max_clients" = "5" }
|
|
{ "max_size" = "2097152" }
|
|
{ "max_backups" = "3" }
|