From 86c8f7fee2a1ee1a2d0c2e49b982c07c9059f74c Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Fri, 30 Nov 2018 15:31:27 +0000 Subject: [PATCH] Enable overriding the service setup host python interpreter In order to enable the service setup host python interpreter to be changed easily, we make it a variable. This will be useful when someone sets the service setup host to be the utility container, because we'll be able to set this var by default. Change-Id: Id3727087b8302258875aa175b2bd2b2a6b4ebe0e --- defaults/main.yml | 1 + tasks/barbican_service_setup.yml | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/main.yml b/defaults/main.yml index 6b4695b..132cdc3 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -20,6 +20,7 @@ debug: False # for the service setup. The host must already have # clouds.yaml properly configured. barbican_service_setup_host: "{{ openstack_service_setup_host | default('localhost') }}" +barbican_service_setup_host_python_interpreter: "{{ openstack_service_setup_host_python_interpreter | default((barbican_service_setup_host == 'localhost') | ternary(ansible_playbook_python, ansible_python['executable'])) }}" # Set the package install state for distribution and pip packages # Options are 'present' and 'latest' diff --git a/tasks/barbican_service_setup.yml b/tasks/barbican_service_setup.yml index f5acdcc..bbc0e1b 100644 --- a/tasks/barbican_service_setup.yml +++ b/tasks/barbican_service_setup.yml @@ -21,8 +21,7 @@ - name: Setup the service delegate_to: "{{ barbican_service_setup_host }}" vars: - ansible_python_interpreter: >- - {{ (barbican_service_setup_host == 'localhost') | ternary(ansible_playbook_python, ansible_python['executable']) }} + ansible_python_interpreter: "{{ barbican_service_setup_host_python_interpreter }}" block: - name: Add service to the keystone service catalog os_keystone_service: