mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
fixed lint
This commit is contained in:
parent
a056da763e
commit
1b04270982
@ -5,6 +5,9 @@ rules:
|
|||||||
line-length:
|
line-length:
|
||||||
max: 180
|
max: 180
|
||||||
level: warning
|
level: warning
|
||||||
|
indentation:
|
||||||
|
spaces: 2
|
||||||
|
indent-sequences: consistent
|
||||||
|
|
||||||
ignore: |
|
ignore: |
|
||||||
.github/stale.yml
|
.github/stale.yml
|
||||||
|
@ -9,22 +9,22 @@
|
|||||||
|
|
||||||
- block:
|
- block:
|
||||||
|
|
||||||
- name: Enable DNF module for CentOS 8.3+.
|
- name: Enable DNF module for CentOS 8.3+.
|
||||||
shell: |
|
shell: |
|
||||||
dnf config-manager --set-enabled powertools
|
dnf config-manager --set-enabled powertools
|
||||||
register: dnf_module_enable
|
register: dnf_module_enable
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
when: ansible_facts['distribution_version'] is version('8.3', '>=')
|
when: ansible_facts['distribution_version'] is version('8.3', '>=')
|
||||||
|
|
||||||
- name: Enable DNF module for CentOS 8.0–8.2.
|
- name: Enable DNF module for CentOS 8.0–8.2.
|
||||||
shell: |
|
shell: |
|
||||||
dnf config-manager --set-enabled PowerTools
|
dnf config-manager --set-enabled PowerTools
|
||||||
register: dnf_module_enable
|
register: dnf_module_enable
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
when: ansible_facts['distribution_version'] is version('8.2', '<=')
|
when: ansible_facts['distribution_version'] is version('8.2', '<=')
|
||||||
|
|
||||||
when:
|
when:
|
||||||
- ansible_distribution == 'CentOS'
|
- ansible_distribution == 'CentOS'
|
||||||
- ansible_distribution_major_version | int >= 8
|
- ansible_distribution_major_version | int >= 8
|
||||||
|
Loading…
x
Reference in New Issue
Block a user