mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2026-08-25 01:05:36 +02:00
Compare commits
7
Commits
ac1e31d055
...
7d0e31b5b3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d0e31b5b3 | ||
|
|
c6e6679d42 | ||
|
|
1e5a11fd99 | ||
|
|
7e659d14bc | ||
|
|
5ad5bd94bf | ||
|
|
261cf7aac5 | ||
|
|
01a8ac6f90 |
@@ -50,16 +50,6 @@ jobs:
|
||||
- distro: debian12
|
||||
playbook: converge.yml
|
||||
experimental: false
|
||||
<<<<<<< Updated upstream
|
||||
=======
|
||||
- distro: debian10
|
||||
playbook: converge.yml
|
||||
experimental: false
|
||||
# Source install started failing recently.
|
||||
# - distro: centos7
|
||||
# playbook: playbook-source-install.yml
|
||||
# experimental: false
|
||||
>>>>>>> Stashed changes
|
||||
|
||||
- distro: rockylinux9
|
||||
playbook: playbook-snap-install.yml
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
- name: Check if domains have changed
|
||||
block:
|
||||
- name: Register certificate domains
|
||||
shell: "{{ certbot_script }} certificates --cert-name {{ cert_item_name }} | grep Domains | cut -d':' -f2"
|
||||
shell: "{{ certbot_script }} certificates --cert-name {{ cert_item_name }} | grep -E '(Domains|Identifiers)' | cut -d':' -f2"
|
||||
changed_when: false
|
||||
register: letsencrypt_cert_domains_dirty
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
- name: Check if domains have changed
|
||||
block:
|
||||
- name: Register certificate domains
|
||||
shell: "{{ certbot_script }} certificates --cert-name {{ cert_item_name }} | grep Domains | cut -d':' -f2"
|
||||
shell: "{{ certbot_script }} certificates --cert-name {{ cert_item_name }} | grep -E '(Domains|Identifiers)' | cut -d':' -f2"
|
||||
changed_when: false
|
||||
register: letsencrypt_cert_domains_dirty
|
||||
|
||||
|
||||
@@ -9,3 +9,4 @@
|
||||
shell: |
|
||||
dnf config-manager --set-enabled crb
|
||||
changed_when: false
|
||||
when: ansible_distribution != 'Fedora'
|
||||
|
||||
Reference in New Issue
Block a user