Release 10.2.0 #114

Manually merged
jlecour merged 103 commits from unstable into stable 2020-09-17 14:14:16 +02:00
3 changed files with 9 additions and 5 deletions
Showing only changes of commit b818c348c2 - Show all commits

View file

@ -26,6 +26,8 @@ The **patch** part changes incrementally at each release.
### Removed
* evoacme: remove Debian 9 support
### Security
## [10.1.0] 2020-08-21

View file

@ -11,8 +11,8 @@ galaxy_info:
platforms:
- name: Debian
versions:
- jessie
- stretch
- buster
dependencies: []
# List your role dependencies here, one per line.

View file

@ -1,9 +1,11 @@
---
- fail:
msg: only compatible with Debian >= 8
when:
- ansible_distribution != "Debian" or ansible_distribution_major_version is version('8', '<')
- name: Verify Debian version
assert:
that:
- ansible_distribution == "Debian"
- ansible_distribution_major_version is version('9', '>=')
msg: only compatible with Debian >= 9
- include: certbot.yml