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.
19 lines
342 B
19 lines
342 B
3 years ago
|
---
|
||
|
|
||
|
- 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
|