From 13a5acab2a117e12b9c2e8c22ea50b887d9ac38a Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Tue, 19 Jul 2016 21:01:20 +0000 Subject: [PATCH] Explicitly disable vnc on ppc Signed-off-by: Patrick Uiterwijk --- roles/cloud_compute/tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/cloud_compute/tasks/main.yml b/roles/cloud_compute/tasks/main.yml index e2a0284492..f0317edd76 100644 --- a/roles/cloud_compute/tasks/main.yml +++ b/roles/cloud_compute/tasks/main.yml @@ -124,6 +124,10 @@ notify: - restart openstack-nova-compute when: not inventory_hostname.startswith('fed-cloud-ppc') +- ini_file: dest=/etc/nova/nova.conf section=DEFAULT option=vnc_enabled value=False + notify: + - restart openstack-nova-compute + when: inventory_hostname.startswith('fed-cloud-ppc') - ini_file: dest=/etc/nova/nova.conf section=DEFAULT option=vncserver_listen value=0.0.0.0 notify: - restart openstack-nova-compute