
- The database create and user creates have been removed from the role. These tasks have been relocated to the playbook. - Tags cleanup. - The "Attempt venv download" task now uses the "checksum" parameter from the get_url module to check if it is necessary to download the venv. - The playbook and its variables (on extras folder) have been updated to reflect these chages. Change-Id: If15f32d51a4f0265322abbcf25d96ba5c77fe1a6
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
---
|
|
# 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: Gather variables for each operating system
|
|
include_vars: "{{ item }}"
|
|
with_first_found:
|
|
- "{{ ansible_distribution | lower }}-{{ ansible_distribution_version | lower }}.yml"
|
|
- "{{ ansible_distribution | lower }}.yml"
|
|
- "{{ ansible_os_family | lower }}.yml"
|
|
tags:
|
|
- always
|
|
|
|
- name: Check init system
|
|
command: cat /proc/1/comm
|
|
register: _pid1_name
|
|
tags:
|
|
- always
|
|
|
|
- name: Set the name of pid1
|
|
set_fact:
|
|
pid1_name: "{{ _pid1_name.stdout }}"
|
|
tags:
|
|
- always
|
|
|
|
- include: sahara_pre_install.yml
|
|
tags:
|
|
- sahara-install
|
|
|
|
- include: sahara_install.yml
|
|
tags:
|
|
- sahara-install
|
|
|
|
- include: sahara_post_install.yml
|
|
tags:
|
|
- sahara-install
|
|
- sahara-config
|
|
|
|
- include: sahara_init.yml
|
|
tags:
|
|
- sahara-install
|
|
|
|
- include: sahara_db_setup.yml
|
|
when: >
|
|
inventory_hostname == groups['sahara_all'][0]
|
|
tags:
|
|
- sahara-install
|
|
|
|
- include: sahara_service_setup.yml
|
|
when: >
|
|
inventory_hostname == groups['sahara_all'][0]
|
|
tags:
|
|
- sahara-install
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|