]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix mistakes in augeas lens
authorDaniel P. Berrange <berrange@redhat.com>
Fri, 25 May 2012 10:18:24 +0000 (11:18 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 28 May 2012 10:00:01 +0000 (11:00 +0100)
Add nmissing 'host_uuid' entry to libvirtd.conf lens and
rename spice_passwd to spice_password in qemu.conf lens

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
daemon/libvirtd.aug
src/qemu/libvirtd_qemu.aug

index 9d78bd7fe12c19b11e20eac03ec7f8ec33ca339b..f32b3a1397ed289f40a1cd2cd026afb9ca9a9748 100644 (file)
@@ -62,6 +62,7 @@ module Libvirtd =
    let logging_entry = int_entry "log_level"
                      | str_entry "log_filters"
                      | str_entry "log_outputs"
+                     | int_entry "log_buffer_size"
 
    let auditing_entry = int_entry "audit_level"
                       | bool_entry "audit_logging"
@@ -70,6 +71,8 @@ module Libvirtd =
                        | int_entry "keepalive_count"
                        | bool_entry "keepalive_required"
 
+   let misc_entry = str_entry "host_uuid"
+
    (* Each enty in the config is one of the following three ... *)
    let entry = network_entry
              | sock_acl_entry
@@ -80,6 +83,7 @@ module Libvirtd =
              | logging_entry
              | auditing_entry
              | keepalive_entry
+             | misc_entry
    let comment = [ label "#comment" . del /#[ \t]*/ "# " .  store /([^ \t\n][^\n]*)?/ . del /\n/ "\n" ]
    let empty = [ label "#empty" . eol ]
 
index 9120d4e8a7ee683810900bf6817fef79ea473fda..359f8f100971634f6f5a3390d65965f7716fa607 100644 (file)
@@ -35,7 +35,7 @@ module Libvirtd_qemu =
                  | str_entry "spice_listen"
                  | bool_entry "spice_tls"
                  | str_entry  "spice_tls_x509_cert_dir"
-                 | str_entry "spice_passwd"
+                 | str_entry "spice_password"
                  | str_entry "security_driver"
                  | bool_entry "security_default_confined"
                  | bool_entry "security_require_confined"