This repo contains the Terraform, Ansible, and Capistrano configurations to deploy a static Jekyll site to multiple instances behind a LoadBalancer.
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

---
- 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']