This commit is contained in:
2021-08-14 13:12:33 +02:00
parent 31db32f1fc
commit 5b0ae7542a
8 changed files with 513 additions and 42 deletions

View File

@ -188,6 +188,14 @@
tags:
- apt-webserver-pkgs
- name: (apt.yml) Install extra packages
apt:
name: "{{ apt_extra_pkgs }}"
state: "{{ apt_install_state }}"
when: apt_install_extra_pkgs|bool
tags:
- apt-extra-pkgs
- name: (apt.yml) Remove unwanted packages
apt:
name: "{{ apt_remove }}"

View File

@ -311,6 +311,22 @@
- git-jitsi_meet-repositories
# ---
# Group [so36_server_dehydrated] reposotories
# ---
#- name: (git.yml) Install/Update sympa server repositories
# git:
# repo: '{{ item.repo }}'
# dest: '{{ item.dest }}'
# with_items: '{{ git_so36_dehydrated_repositories }}'
# loop_control:
# label: "{{ item.name }}"
# when: "groups['so36_server_dehydrated']|string is search(inventory_hostname)"
# tags:
# - git-so36-dehydrated-repositories
# ---
# Other (host specific) repositories
# ---