mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct ansible_distribution typo
Redhat != RedHat
This commit is contained in:
parent
ba9950a73a
commit
868746b095
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
- "install_result.mode == '0755'"
|
||||
|
||||
- include: 'sysv_setup.yml'
|
||||
when: ansible_distribution in ['Redhat', 'CentOS', 'ScientificLinux']
|
||||
when: ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux']
|
||||
- include: 'systemd_setup.yml'
|
||||
when: ansible_distribution == 'Fedora'
|
||||
- include: 'upstart_setup.yml'
|
||||
|
@ -101,7 +101,7 @@
|
|||
- "remove_result.state == 'absent'"
|
||||
|
||||
- include: 'sysv_cleanup.yml'
|
||||
when: ansible_distribution in ['Redhat', 'CentOS', 'ScientificLinux']
|
||||
when: ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux']
|
||||
- include: 'systemd_cleanup.yml'
|
||||
when: ansible_distribution == 'Fedora'
|
||||
- include: 'upstart_cleanup.yml'
|
||||
|
|
Loading…
Reference in a new issue