You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
485 B
17 lines
485 B
3 years ago
|
---
|
||
|
- name: Converge
|
||
|
hosts: all
|
||
|
roles:
|
||
|
- role: caddy_ansible.caddy_ansible
|
||
|
tasks:
|
||
|
- name: Ensure ss is installed (for testinfra)
|
||
|
yum:
|
||
|
name: iproute
|
||
|
state: present
|
||
|
when: ansible_distribution in ['CentOS', 'Red Hat Enterprise Linux', 'Fedora']
|
||
|
- name: Ensure ss is installed (for testinfra)
|
||
|
package:
|
||
|
name: iproute2
|
||
|
state: present
|
||
|
when: ansible_distribution not in ['CentOS', 'Red Hat Enterprise Linux', 'Fedora']
|