mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2026-08-25 09:10:56 +02:00
Compare commits
4
Commits
4be771f12a
...
5.2.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98ea3238ed | ||
|
|
78f4cb5ad5 | ||
|
|
d1cbcde4de | ||
|
|
03f4cc3a99 |
@@ -41,10 +41,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
include:
|
||||
- distro: centos8
|
||||
playbook: converge.yml
|
||||
experimental: false
|
||||
- distro: centos7
|
||||
- distro: rockylinux9
|
||||
playbook: converge.yml
|
||||
experimental: false
|
||||
- distro: ubuntu2004
|
||||
@@ -53,12 +50,8 @@ jobs:
|
||||
- distro: debian10
|
||||
playbook: converge.yml
|
||||
experimental: false
|
||||
# Source install started failing recently.
|
||||
# - distro: centos7
|
||||
# playbook: playbook-source-install.yml
|
||||
# experimental: false
|
||||
|
||||
- distro: centos7
|
||||
- distro: rockylinux9
|
||||
playbook: playbook-snap-install.yml
|
||||
experimental: true
|
||||
|
||||
|
||||
@@ -27,6 +27,8 @@ certbot_certs: []
|
||||
# - domains:
|
||||
# - example3.com
|
||||
|
||||
certbot_create_extra_args: ""
|
||||
|
||||
certbot_create_command: >-
|
||||
{{ certbot_script }} certonly --{{ certbot_create_method }}
|
||||
{{ '--hsts' if certbot_hsts else '' }}
|
||||
|
||||
@@ -8,7 +8,7 @@ driver:
|
||||
name: docker
|
||||
platforms:
|
||||
- name: instance
|
||||
image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux8}-ansible:latest"
|
||||
image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux9}-ansible:latest"
|
||||
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
|
||||
+3
-22
@@ -1,30 +1,11 @@
|
||||
---
|
||||
# See: https://github.com/geerlingguy/ansible-role-certbot/issues/107
|
||||
- block:
|
||||
|
||||
- name: Ensure dnf-plugins are installed on CentOS 8+.
|
||||
- name: Ensure dnf-plugins are installed on Rocky/AlmaLinux.
|
||||
yum:
|
||||
name: dnf-plugins-core
|
||||
state: present
|
||||
|
||||
- block:
|
||||
|
||||
- name: Enable DNF module for CentOS 8.3+.
|
||||
- name: Enable DNF module for Rocky/AlmaLinux.
|
||||
shell: |
|
||||
dnf config-manager --set-enabled powertools
|
||||
register: dnf_module_enable
|
||||
dnf config-manager --set-enabled crb
|
||||
changed_when: false
|
||||
|
||||
when: ansible_facts['distribution_version'] is version('8.3', '>=')
|
||||
|
||||
- name: Enable DNF module for CentOS 8.0–8.2.
|
||||
shell: |
|
||||
dnf config-manager --set-enabled PowerTools
|
||||
register: dnf_module_enable
|
||||
changed_when: false
|
||||
|
||||
when: ansible_facts['distribution_version'] is version('8.2', '<=')
|
||||
|
||||
when:
|
||||
- ansible_distribution == 'CentOS'
|
||||
- ansible_distribution_major_version | int >= 8
|
||||
|
||||
Reference in New Issue
Block a user