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 ### 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