mirror of
https://github.com/roles-ansible/ansible_role_gitea.git
synced 2024-08-16 11:39:50 +02:00
Fixed missing quotes
This commit is contained in:
parent
18bb3f9c44
commit
664c894e17
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
group: root
|
||||
mode: 0444
|
||||
notify: systemctl restart fail2ban
|
||||
when: 'fail2ban' in ansible_facts.packages
|
||||
when: "'fail2ban' in ansible_facts.packages"
|
||||
|
||||
- name: Install fail2ban jail
|
||||
become: true
|
||||
|
@ -19,4 +19,4 @@
|
|||
group: root
|
||||
mode: 0444
|
||||
notify: systemctl restart fail2ban
|
||||
when: 'fail2ban' in ansible_facts.packages
|
||||
when: "'fail2ban' in ansible_facts.packages"
|
||||
|
|
Loading…
Reference in a new issue