2016-06-27 22:52:39 +02:00
|
|
|
---
|
|
|
|
|
2021-03-19 22:39:30 +01:00
|
|
|
# Use acme.sh instead of certbot because they only support installation via
|
|
|
|
# snap now.
|
2018-04-26 10:00:47 +02:00
|
|
|
- block:
|
2021-03-19 22:39:30 +01:00
|
|
|
- name: Remove certbot
|
2021-03-19 22:45:41 +01:00
|
|
|
apt:
|
|
|
|
name: certbot
|
|
|
|
state: absent
|
2021-03-19 22:39:30 +01:00
|
|
|
|
|
|
|
- name: Remove old certbot post and pre hooks for nginx
|
2021-03-19 22:45:41 +01:00
|
|
|
file:
|
|
|
|
dest: "{{ item }}"
|
|
|
|
state: absent
|
2021-03-19 22:39:30 +01:00
|
|
|
with_items:
|
|
|
|
- /etc/letsencrypt/renewal-hooks/pre/stop-nginx.sh
|
|
|
|
- /etc/letsencrypt/renewal-hooks/post/start-nginx.sh
|
|
|
|
|
|
|
|
- name: Download acme.sh
|
|
|
|
get_url:
|
|
|
|
url: https://raw.githubusercontent.com/acmesh-official/acme.sh/master/acme.sh
|
|
|
|
dest: "{{ letsencrypt_acme_script }}"
|
2021-09-07 16:10:35 +02:00
|
|
|
mode: 0700
|
2021-03-19 22:39:30 +01:00
|
|
|
|
|
|
|
- name: Prepare Let's Encrypt well-known directory
|
|
|
|
file:
|
|
|
|
state: directory
|
|
|
|
path: /var/lib/letsencrypt/.well-known
|
|
|
|
owner: root
|
|
|
|
group: nginx
|
|
|
|
mode: g+s
|
|
|
|
|
2018-04-26 10:00:47 +02:00
|
|
|
- name: Copy systemd service to renew Let's Encrypt certs
|
2021-03-19 22:39:30 +01:00
|
|
|
template:
|
|
|
|
src: renew-letsencrypt.service.j2
|
|
|
|
dest: /etc/systemd/system/renew-letsencrypt.service
|
|
|
|
mode: 0644
|
|
|
|
owner: root
|
|
|
|
group: root
|
2018-04-26 10:00:47 +02:00
|
|
|
|
|
|
|
- name: Copy systemd timer to renew Let's Encrypt certs
|
2021-03-19 22:39:30 +01:00
|
|
|
copy:
|
|
|
|
src: renew-letsencrypt.timer
|
|
|
|
dest: /etc/systemd/system/renew-letsencrypt.timer
|
|
|
|
mode: 0644
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
|
|
|
|
# always issues daemon-reload just in case the service/timer changed
|
2018-04-26 10:00:47 +02:00
|
|
|
- name: Start and enable systemd timer to renew Let's Encrypt certs
|
2021-03-19 22:39:30 +01:00
|
|
|
systemd:
|
|
|
|
name: renew-letsencrypt.timer
|
|
|
|
state: started
|
|
|
|
enabled: yes
|
|
|
|
daemon_reload: yes
|
2020-06-06 19:38:08 +02:00
|
|
|
|
2021-09-07 16:07:33 +02:00
|
|
|
when: (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '=='))
|
|
|
|
or (ansible_distribution == 'Debian' and ansible_distribution_version is version('11', '=='))
|
2018-04-25 19:03:32 +02:00
|
|
|
tags: letsencrypt
|
2016-06-27 22:52:39 +02:00
|
|
|
|
|
|
|
# vim: set ts=2 sw=2:
|