Added basic changes to make it compatible with Archlinux

This commit is contained in:
Christian Wolf
2020-03-28 11:39:15 +01:00
parent 9b6289b08c
commit d84b2868b7
6 changed files with 56 additions and 1 deletions

View File

@ -21,6 +21,14 @@
update_cache: no
when: "ansible_os_family == 'Debian'"
- name: Ensure git installed (Archlinux)
pacman
name:
- git
state: present
update_cache: no
when: "ansible_distribution == 'Archlinux'"
- name: Clone synapse-simple-antispam git repository
git:
repo: "{{ matrix_synapse_ext_spam_checker_synapse_simple_antispam_git_repository_url }}"