This commit is contained in:
2023-04-13 18:07:33 +02:00
parent 12c86849c2
commit 11891bedf6
20 changed files with 487 additions and 34 deletions

View File

@ -51,3 +51,31 @@
- groups['lxc_host']|string is search(inventory_hostname)
tags:
- yum-lxc-hosts-pkgs
- name: (yum.yml) Install postgresql server related packages
yum:
name: "{{ yum_postgresql_pkgs }}"
state: "{{ yum_install_state }}"
when:
- install_postgresql_pkgs|bool
tags:
- apt-postgresql-server-pkgs
- name: (yum.yml) Install compile related packages
yum:
name: "{{ yum_compiler_pkgs }}"
state: "{{ yum_install_state }}"
when:
- install_compiler_pkgs|bool
tags:
- yum-compiler-pkgs
- name: (yum.yml) Install webserver related packages
yum:
name: "{{ yum_webserver_pkgs }}"
state: "{{ yum_install_state }}"
when: install_webserver_pkgs|bool
tags:
- yum-webserver-pkgs