fusor / ansible-ovirt

Ansible scripts for deploying Ovirt/RHV
14 stars 11 forks source link

Remove ansible warning from self_hosted playbook #55

Closed kobihk closed 7 years ago

kobihk commented 7 years ago

for example: 15:58:13 TASK [subscription : print repositories] * 15:58:13 [WARNING]: when statements should not include jinja2 templating delimiters 15:58:13 such as {{ }} or {% %}. Found: {{ repositories|length > 0 }} 15:58:13 skipping: [puma24.scl.lab.tlv.redhat.com] 15:58:13 15:58:13 TASK [subscription : disable all] ** 15:58:13 [WARNING]: when statements should not include jinja2 templating delimiters 15:58:13 such as {{ }} or {% %}. Found: {{ repositories|length > 0 }} 15:58:13 skipping: [puma24.scl.lab.tlv.redhat.com] 15:58:13 15:58:13 TASK [subscription : enable repos] *** 15:58:13 [WARNING]: when statements should not include jinja2 templating delimiters 15:58:13 such as {{ }} or {% %}. Found: {{ repositories|length > 0 }} 15:58:13 skipping: [puma24.scl.lab.tlv.redhat.com]

after this patch: 17:16:51 TASK [subscription : print repositories] * 17:16:51 skipping: [puma23.scl.lab.tlv.redhat.com] 17:16:51 17:16:51 TASK [subscription : disable all] ** 17:16:51 skipping: [puma23.scl.lab.tlv.redhat.com] 17:16:51 17:16:51 TASK [subscription : enable repos] *** 17:16:51 skipping: [puma23.scl.lab.tlv.redhat.com]

fabianvf commented 7 years ago

Woops, this one slipped through the cracks. ACK