From ecfa10fe1c01048074fd585393d65ef1b03765b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Mon, 16 Dec 2024 18:50:53 +0200 Subject: [PATCH] Tasks Update: Installer - Certbot --- tasks/installer.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tasks/installer.yml b/tasks/installer.yml index b5d5972..9c0248c 100644 --- a/tasks/installer.yml +++ b/tasks/installer.yml @@ -86,14 +86,14 @@ tags: - certbot -- name: "Installer : Certbot : Auth Hook" - get_url: - url: "https://git.waren.io/warengroup/acme-dns-auth/raw/branch/master/acme-dns-auth.py" - dest: "~/data/letsencrypt/config/renewal-hooks/pre/acme-dns-auth.py" - mode: '700' - force: true - tags: - - certbot +# - name: "Installer : Certbot : Auth Hook" +# get_url: +# url: "https://git.waren.io/warengroup/acme-dns-auth/raw/branch/master/acme-dns-auth.py" +# dest: "~/data/letsencrypt/config/renewal-hooks/pre/acme-dns-auth.py" +# mode: '700' +# force: true +# tags: +# - certbot - name: "Installer : Certbot : Create Certificates" command: "certbot certonly --cert-name {{ cert.name }} --manual --preferred-challenges dns-01 --email {{ cert.email }} --server https://acme-v02.api.letsencrypt.org/directory --agree-tos -n --manual-auth-hook ~/data/letsencrypt/config/renewal-hooks/pre/acme-dns-auth.py --debug-challenges --preferred-chain='ISRG Root X1' --key-type rsa -d {{ cert.domains | join(' -d ') }} --config-dir ~/data/letsencrypt/config --logs-dir ~/data/letsencrypt/logs --work-dir ~/data/letsencrypt/work"