evoacme: remove Debian 9 support
All checks were successful
continuous-integration/drone/push Build is passing

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 ### Removed
* evoacme: remove Debian 9 support
### Security ### Security
## [10.1.0] 2020-08-21 ## [10.1.0] 2020-08-21

View file

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

View file

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