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.
 
 
 
 
 

18 lines
342 B

---
- name: Update cache
apt:
update_cache: true
cache_valid_time: 43200 # 12 hours
# This is required because it provides the /bin/kill binary used in the service file
- name: Install procps
apt:
name: procps
state: present
- name: Install libcap
apt:
name: libcap2-bin
state: present
when: caddy_setcap