Compare commits

...
6 Commits
Author SHA1 Message Date
Jeff GeerlingandGitHub 6ab7f2db23 Merge pull request #227 from almer-t/patch-1
Add missing default for certbot_create_extra_args
2025-03-24 16:11:24 -05:00
Jeff Geerling 1278651f0d Update CI status badges. 2025-01-30 21:24:54 -06:00
Jeff Geerling 3d2fbc6202 Use more modern OS versions for testing. 2025-01-29 22:51:16 -06:00
Jeff Geerling 4f1179392e Don't use sudo inside molecule CI tests. 2025-01-29 21:39:13 -06:00
Jeff Geerling e5bfeaf936 Attempt to get molecule CI tests running again. 2025-01-28 22:23:55 -06:00
AlmerandGitHub 06ca208bb6 Add missing default for certbot_create_extra_args 2024-11-02 11:40:20 +01:00
6 changed files with 7 additions and 6 deletions
+2 -2
View File
@@ -44,10 +44,10 @@ jobs:
- distro: rockylinux9 - distro: rockylinux9
playbook: converge.yml playbook: converge.yml
experimental: false experimental: false
- distro: ubuntu2004 - distro: ubuntu2404
playbook: converge.yml playbook: converge.yml
experimental: false experimental: false
- distro: debian10 - distro: debian12
playbook: converge.yml playbook: converge.yml
experimental: false experimental: false
+1 -1
View File
@@ -1,6 +1,6 @@
# Ansible Role: Certbot (for Let's Encrypt) # Ansible Role: Certbot (for Let's Encrypt)
[![CI](https://github.com/geerlingguy/ansible-role-certbot/workflows/CI/badge.svg?event=push)](https://github.com/geerlingguy/ansible-role-certbot/actions?query=workflow%3ACI) [![CI](https://github.com/geerlingguy/ansible-role-certbot/actions/workflows/ci.yml/badge.svg)](https://github.com/geerlingguy/ansible-role-certbot/actions/workflows/ci.yml)
Installs and configures Certbot (for Let's Encrypt). Installs and configures Certbot (for Let's Encrypt).
+1
View File
@@ -13,6 +13,7 @@ certbot_hsts: false
# Parameters used when creating new Certbot certs. # Parameters used when creating new Certbot certs.
certbot_create_if_missing: false certbot_create_if_missing: false
certbot_create_method: standalone certbot_create_method: standalone
certbot_create_extra_args: ""
certbot_admin_email: email@example.com certbot_admin_email: email@example.com
certbot_expand: false certbot_expand: false
+1 -1
View File
@@ -1,7 +1,7 @@
--- ---
- name: Converge - name: Converge
hosts: all hosts: all
become: true # become: true
vars: vars:
certbot_auto_renew_user: root certbot_auto_renew_user: root
+1 -1
View File
@@ -1,7 +1,7 @@
--- ---
- name: Converge - name: Converge
hosts: all hosts: all
become: true #become: true
vars: vars:
certbot_install_method: 'snap' certbot_install_method: 'snap'
+1 -1
View File
@@ -1,7 +1,7 @@
--- ---
- name: Converge - name: Converge
hosts: all hosts: all
become: true #become: true
vars: vars:
certbot_install_method: 'source' certbot_install_method: 'source'