infra/roles/caddy/tasks/packages-apt.yml

19 lines
342 B
YAML
Raw Normal View History

2020-09-28 23:25:35 +02:00
---
- 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