File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
Certbot NGINX [ ![ Build Status] ( https://travis-ci.org/coopdevs/certbot_nginx.svg?branch=master )] ( https://travis-ci.org/coopdevs/certbot_nginx )
2
2
=========
3
3
4
- Simple Ansible role to install ` certbot ` with NGINX plugin on ** Ubuntu 16.04** and ** Ubuntu 18.04** .
4
+ Simple Ansible role to install ` certbot ` with NGINX plugin on:
5
+ * ** Ubuntu 16.04**
6
+ * ** Ubuntu 18.04** .
7
+ * ** Ubuntu 20.04** .
8
+ * ** Ubuntu 22.04** .
9
+ * ** Ubuntu 24.04** .
5
10
6
11
This role will:
7
12
1 . Add ` certbot ` PPA repository
Original file line number Diff line number Diff line change 1
1
---
2
+ - name : Set Certbot package name and versions (Ubuntu >= 24.04)
3
+ set_fact :
4
+ certbot_version : 2.9.0-1
5
+ certbot_nginx_version : 2.9.0-1
6
+ certbot_nginx_name : python3-certbot-nginx
7
+ when : ansible_distribution_version >= "24.04"
8
+
2
9
- name : Set Certbot package name and versions (Ubuntu >= 22.04)
3
10
set_fact :
4
11
certbot_version : 1.21.0-1build1
5
12
certbot_nginx_version : 1.21.0-1
6
13
certbot_nginx_name : python3-certbot-nginx
7
- when : ansible_distribution_version >= "22.04"
14
+ when : ansible_distribution_version >= "22.04" and ansible_distribution_version < "24.04"
8
15
9
16
- name : Set Certbot package name and versions (Ubuntu >= 20.04)
10
17
set_fact :
You can’t perform that action at this time.
0 commit comments