Skip to content
Snippets Groups Projects
Commit a530c400 authored by ak@geant.org's avatar ak@geant.org
Browse files

fixing another literal comparison

parent 30fb8e55
No related branches found
No related tags found
2 merge requests!2Cic changes,!1Cic changes
Pipeline #84255 passed
......@@ -57,7 +57,7 @@
subject: "Config Integrity Check failed for {{ inventory_hostname }} on prefix-lists"
body: "{{ lookup('ansible.builtin.template', 'mail_body.j2') }}"
delegate_to: localhost
when: response.changed == true and ( send_email | ansible.builtin.bool )
when: (response.changed | ansible.builtin.bool) and ( send_email | ansible.builtin.bool )
- name: Deploy global prefix list [AND COMMIT]
juniper_junos_config:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment