test_libvirtd.aug.in 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
module Test_libvirtd =
   ::CONFIG::

   test Libvirtd.lns get conf =
        { "listen_tls" = "0" }
        { "listen_tcp" = "1" }
        { "tls_port" = "16514" }
        { "tcp_port" = "16509" }
        { "listen_addr" = "192.168.0.1" }
        { "mdns_adv" = "1" }
        { "mdns_name" = "Virtualization Host Joe Demo" }
        { "unix_sock_group" = "libvirt" }
        { "unix_sock_ro_perms" = "0777" }
        { "unix_sock_rw_perms" = "0770" }
15
        { "unix_sock_admin_perms" = "0700" }
16 17 18 19 20
        { "unix_sock_dir" = "/var/run/libvirt" }
        { "auth_unix_ro" = "none" }
        { "auth_unix_rw" = "none" }
        { "auth_tcp" = "sasl" }
        { "auth_tls" = "none" }
21
        { "access_drivers"
22
             { "1" = "polkit" }
23
        }
24 25 26 27 28 29 30 31 32 33 34 35 36 37
        { "key_file" = "/etc/pki/libvirt/private/serverkey.pem" }
        { "cert_file" = "/etc/pki/libvirt/servercert.pem" }
        { "ca_file" = "/etc/pki/CA/cacert.pem" }
        { "crl_file" = "/etc/pki/CA/crl.pem" }
        { "tls_no_sanity_certificate" = "1" }
        { "tls_no_verify_certificate" = "1" }
        { "tls_allowed_dn_list"
             { "1" = "DN1"}
             { "2" = "DN2"}
        }
        { "sasl_allowed_username_list"
             { "1" = "joe@EXAMPLE.COM" }
             { "2" = "fred@EXAMPLE.COM" }
        }
38
        { "tls_priority" = "NORMAL" }
39
        { "max_clients" = "5000" }
40
        { "max_queued_clients" = "1000" }
41
        { "max_anonymous_clients" = "20" }
42 43 44 45
        { "min_workers" = "5" }
        { "max_workers" = "20" }
        { "prio_workers" = "5" }
        { "max_client_requests" = "5" }
46 47 48 49 50
        { "admin_min_workers" = "1" }
        { "admin_max_workers" = "5" }
        { "admin_max_clients" = "5" }
        { "admin_max_queued_clients" = "5" }
        { "admin_max_client_requests" = "5" }
51 52 53 54 55 56
        { "log_level" = "3" }
        { "log_filters" = "3:remote 4:event" }
        { "log_outputs" = "3:syslog:libvirtd" }
        { "audit_level" = "2" }
        { "audit_logging" = "1" }
        { "host_uuid" = "00000000-0000-0000-0000-000000000000" }
57
        { "host_uuid_source" = "smbios" }
58 59 60
        { "keepalive_interval" = "5" }
        { "keepalive_count" = "5" }
        { "keepalive_required" = "1" }
61
        { "admin_keepalive_required" = "1" }
62 63
        { "admin_keepalive_interval" = "5" }
        { "admin_keepalive_count" = "5" }
64
        { "ovs_timeout" = "5" }