Update to 2022-03-07 15:00

This commit is contained in:
Daniel Berteaud
2022-03-07 15:00:06 +01:00
parent 8b7e505180
commit be6bc20783
25 changed files with 253 additions and 120 deletions

View File

@@ -24,7 +24,17 @@
dir: PowerTools
tags: repo
- include: epel_{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
- include: fws_{{ ansible_os_family }}.yml
- include: dbd_{{ ansible_os_family }}.yml
- include: postgres_client_{{ ansible_os_family }}.yml
- name: Remove obsolete repo
file: path=/etc/yum.repos.d/{{ item }}.repo state=absent
loop:
- fws
tags: repo
- include_tasks: epel_{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
tags: always
- include_tasks: dbd_{{ ansible_os_family }}.yml
tags: always
- include_tasks: postgres_client_{{ ansible_os_family }}.yml
tags: always

View File

@@ -44,9 +44,14 @@
- redis
- fws-extra-nginx
- CentOS-Linux-BaseOS
- fws
tags: repo
- include: epel_{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
- include: fws_{{ ansible_os_family }}.yml
- include: dbd_{{ ansible_os_family }}.yml
- include: postgres_client_{{ ansible_os_family }}.yml
- include_tasks: epel_{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
tags: always
- include_tasks: dbd_{{ ansible_os_family }}.yml
tags: always
- include_tasks: postgres_client_{{ ansible_os_family }}.yml
tags: always

View File

@@ -118,9 +118,14 @@
- CentOS-cr
- CentOS-extras
- CentOS-fasttrack
- fws
tags: repo
- include: epel_{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
- include: fws_{{ ansible_os_family }}.yml
- include: dbd_{{ ansible_os_family }}.yml
- include: postgres_client_{{ ansible_os_family }}.yml
- include_tasks: epel_{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml
tags: always
- include_tasks: dbd_{{ ansible_os_family }}.yml
tags: always
- include_tasks: postgres_client_{{ ansible_os_family }}.yml
tags: always

View File

@@ -1,6 +1,6 @@
---
- include: '{{ repo_item }}'
- include_tasks: '{{ repo_item }}'
with_first_found:
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
- '{{ ansible_os_family }}-{{ ansible_distribution_major_version }}.yml'
@@ -8,5 +8,5 @@
- '{{ ansible_os_family }}.yml'
loop_control:
loop_var: repo_item
tags: repo
tags: always