mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2026-08-25 17:20:44 +02:00
Compare commits
4
Commits
4be771f12a
..
5.2.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98ea3238ed | ||
|
|
78f4cb5ad5 | ||
|
|
d1cbcde4de | ||
|
|
03f4cc3a99 |
@@ -41,10 +41,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- distro: centos8
|
- distro: rockylinux9
|
||||||
playbook: converge.yml
|
|
||||||
experimental: false
|
|
||||||
- distro: centos7
|
|
||||||
playbook: converge.yml
|
playbook: converge.yml
|
||||||
experimental: false
|
experimental: false
|
||||||
- distro: ubuntu2004
|
- distro: ubuntu2004
|
||||||
@@ -53,12 +50,8 @@ jobs:
|
|||||||
- distro: debian10
|
- distro: debian10
|
||||||
playbook: converge.yml
|
playbook: converge.yml
|
||||||
experimental: false
|
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
|
playbook: playbook-snap-install.yml
|
||||||
experimental: true
|
experimental: true
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ certbot_certs: []
|
|||||||
# - domains:
|
# - domains:
|
||||||
# - example3.com
|
# - example3.com
|
||||||
|
|
||||||
|
certbot_create_extra_args: ""
|
||||||
|
|
||||||
certbot_create_command: >-
|
certbot_create_command: >-
|
||||||
{{ certbot_script }} certonly --{{ certbot_create_method }}
|
{{ certbot_script }} certonly --{{ certbot_create_method }}
|
||||||
{{ '--hsts' if certbot_hsts else '' }}
|
{{ '--hsts' if certbot_hsts else '' }}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ driver:
|
|||||||
name: docker
|
name: docker
|
||||||
platforms:
|
platforms:
|
||||||
- name: instance
|
- name: instance
|
||||||
image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux8}-ansible:latest"
|
image: "geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux9}-ansible:latest"
|
||||||
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
||||||
volumes:
|
volumes:
|
||||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||||
|
|||||||
+8
-27
@@ -1,30 +1,11 @@
|
|||||||
---
|
---
|
||||||
# See: https://github.com/geerlingguy/ansible-role-certbot/issues/107
|
# See: https://github.com/geerlingguy/ansible-role-certbot/issues/107
|
||||||
- block:
|
- name: Ensure dnf-plugins are installed on Rocky/AlmaLinux.
|
||||||
|
yum:
|
||||||
|
name: dnf-plugins-core
|
||||||
|
state: present
|
||||||
|
|
||||||
- name: Ensure dnf-plugins are installed on CentOS 8+.
|
- name: Enable DNF module for Rocky/AlmaLinux.
|
||||||
yum:
|
shell: |
|
||||||
name: dnf-plugins-core
|
dnf config-manager --set-enabled crb
|
||||||
state: present
|
changed_when: false
|
||||||
|
|
||||||
- block:
|
|
||||||
|
|
||||||
- name: Enable DNF module for CentOS 8.3+.
|
|
||||||
shell: |
|
|
||||||
dnf config-manager --set-enabled powertools
|
|
||||||
register: dnf_module_enable
|
|
||||||
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