evoacme: remove Debian 9 support
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jérémy Lecour 2020-09-11 11:08:42 +02:00 committed by Jérémy Lecour
parent f9d6fe0ad4
commit b818c348c2
3 changed files with 9 additions and 5 deletions

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