From e80b44da0861b23ea361ea434ef8e9cc7bacf9d0 Mon Sep 17 00:00:00 2001
From: SamYaple <sam@yaple.net>
Date: Wed, 27 Jan 2016 20:03:08 +0000
Subject: [PATCH] Remove the libvirt socket

We use tcp connection rather than socket so we can remove the config
options related to it.

Additionally adjust the _extremely_ verbose logging from INFO to
WARNING.

TrivialFix
Change-Id: I88bf660134192f11732d012985df5c4f688419ba
---
 ansible/roles/nova/templates/libvirtd.conf.j2 | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/ansible/roles/nova/templates/libvirtd.conf.j2 b/ansible/roles/nova/templates/libvirtd.conf.j2
index 93137e798..9b43fc710 100644
--- a/ansible/roles/nova/templates/libvirtd.conf.j2
+++ b/ansible/roles/nova/templates/libvirtd.conf.j2
@@ -1,11 +1,6 @@
 listen_tcp = 1
 auth_tcp = "none"
 ca_file = ""
-log_level = 2
-log_outputs = "2:file:/var/log/libvirt/libvirtd.log"
+log_level = 3
+log_outputs = "3:file:/var/log/libvirt/libvirtd.log"
 listen_addr = "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
-unix_sock_group = "nova"
-unix_sock_ro_perms = "0777"
-unix_sock_rw_perms = "0770"
-auth_unix_ro = "none"
-auth_unix_rw = "none"
-- 
GitLab