d9c69b8720
The conditions in our setup playbooks have been broken for a long time however they've not caused any issues because they're not deprecated because the use of "When" with playbook includes is simply ignored. This change removes the conditions which cleans up our setup playbooks. The conditions to exit or execute a given playbook has been moved into the playbook. If the condition is not met then the meta tag is used to exit the playbook and continue. Change-Id: I4e1c2eb1ebb0dfb01e5c98e0fd13272943e9a97c Signed-off-by: Kevin Carter <kevin@cloudnull.com>
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
---
|
|
# Copyright 2017, 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.
|
|
|
|
- name: Configure all nodes to use the repo container for python/apt packages
|
|
hosts: "{{ openstack_host_group | default('hosts') }}:all_containers"
|
|
vars:
|
|
pip_install: no
|
|
pip_configure: yes
|
|
vars_files:
|
|
- "defaults/repo_packages/openstack_services.yml"
|
|
- "defaults/{{ install_method }}_install.yml"
|
|
environment: "{{ deployment_environment_variables | default({}) }}"
|
|
tags:
|
|
- always
|
|
- repo-config
|
|
pre_tasks:
|
|
- name: End playbook
|
|
meta: end_play
|
|
when:
|
|
- (install_method | default('source')) != "source"
|
|
|
|
- include_tasks: common-tasks/package-cache-proxy.yml
|
|
- include_tasks: common-tasks/set-pip-vars.yml
|
|
roles:
|
|
- pip_install
|