openstack-ansible-galera_cl.../tasks/galera_client_install.yml
Major Hayden 3b79763ada Use dynamic includes to save time
This patch adds a dynamic include for installing packages
via yum or apt. It avoids having so many skipped tasks and
should save some time during gate runs.

Change-Id: I953764b7bb95df0625993a31ba4effc8b81499aa
(cherry picked from commit 1bfb4553ad)
2017-02-20 19:12:33 +00:00

38 lines
1.2 KiB
YAML

---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- include: "galera_client_install_{{ ansible_pkg_mgr }}.yml"
when:
- galera_client_package_install | bool
tags:
- install-apt
- install-yum
- name: Install pip packages
pip:
name: "{{ galera_client_pip_packages }}"
state: "{{ galera_client_pip_package_state }}"
extra_args: >-
{{ (pip_install_upper_constraints is defined) | ternary('--constraint ' + pip_install_upper_constraints | default(''),'') }}
{{ pip_install_options | default('') }}
register: install_packages
until: install_packages|success
retries: 5
delay: 2
when:
- galera_client_package_install | bool
tags:
- galera-client-pip-packages