From 581e6e5b8eb7c5f8d269f0d3154adaf12d66dbde Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Sat, 10 Mar 2018 10:43:50 -0500 Subject: [PATCH] Fix typo and misleading task name for nova-consoleauth The services for console are installed in the 'Install nova console/metadata services' task, however, the scheduler install task misleadingly is named to mention that it installs consoleauth and tries to run on the nova_consoleauth group which does not exist. Change-Id: If7c00cbfe3bd50a3702f86e7348de206b9fa3b95 --- playbooks/os-nova-install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/os-nova-install.yml b/playbooks/os-nova-install.yml index 926c8f001d..be6414e91b 100644 --- a/playbooks/os-nova-install.yml +++ b/playbooks/os-nova-install.yml @@ -86,10 +86,10 @@ -- name: Install nova-scheduler/nova-consoleauth services +- name: Install nova-scheduler services include: common-playbooks/nova.yml vars: - nova_hosts: "nova_scheduler:nova_consoleauth:!nova_conductor" + nova_hosts: "nova_scheduler:!nova_conductor" nova_serial: "{{ nova_scheduler_serial | default(['1', '100%']) }}"