Fix warning on when
parent
50e25d45b8
commit
acf8de8f87
|
@ -1,9 +1,10 @@
|
|||
---
|
||||
|
||||
- name: FAIL | If Dynamic module is not available
|
||||
fail: msg="{{ item }} dynamic module is not available"
|
||||
fail:
|
||||
msg: "{{ item }} dynamic module is not available"
|
||||
with_items: "{{ nginx_dyn_modules }}"
|
||||
when: "'{{ item }}=dynamic' not in nginx_modules"
|
||||
when: item + '=dynamic' not in nginx_modules
|
||||
|
||||
- name: APT | Install nginx modules
|
||||
apt: >
|
||||
|
|
Loading…
Reference in New Issue