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

@@ -44,3 +44,10 @@
- "{{ matrix_server_fqn_matrix }}"
- "{{ matrix_server_fqn_riot }}"
when: "item != item|lower"
- name: Fail if using python2 on Archlinux
fail:
msg: "Detected that you're using python2 when installing onto Archlinux. Archlinux by default only supports python3."
when:
- ansible_distribution == 'Archlinux'
- ansible_python.version.major != 3