ansible-roles/evoacme/tasks/main.yml

24 lines
472 B
YAML
Raw Normal View History

---
2017-03-24 14:06:05 +01:00
2020-09-11 11:08:42 +02:00
- name: Verify Debian version
assert:
that:
- ansible_distribution == "Debian"
- ansible_distribution_major_version is version('9', '>=')
msg: only compatible with Debian >= 9
when: not evoacme_disable_debian_check
2017-03-24 14:06:05 +01:00
2017-05-19 22:31:32 +02:00
- include: certbot.yml
2016-12-16 16:18:19 +01:00
- include: permissions.yml
2016-12-16 16:18:19 +01:00
2020-08-21 14:21:28 +02:00
# Enable this task if you want to deploy hooks
# - include: evoacme_hook.yml
# vars:
# hook_name: "{{ item }}"
# loop: []
2017-11-15 11:17:58 +01:00
2017-05-19 22:31:32 +02:00
- include: conf.yml
2016-12-16 16:18:19 +01:00
2017-05-19 22:31:32 +02:00
- include: scripts.yml