Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- ---
- # This is for both RedHat 7 and 8
- - name: Ensure openssl installed (RedHat)
- yum:
- name:
- - openssl
- state: latest
- when: ansible_os_family == 'RedHat'
-
- # This is for both Debian and Raspbian
- - name: Ensure openssl installed (Debian/Raspbian)
- apt:
- name:
- - openssl
- state: latest
- when: ansible_os_family == 'Debian'
-
- - name: Ensure openssl installed (Archlinux)
- pacman:
- name:
- - openssl
- state: latest
- when: ansible_distribution == 'Archlinux'
|