Skip to content
Snippets Groups Projects

`iptrunk_migration` updates related to BFD

Merged Aleksandr Kurbatov requested to merge bugfix/nat-619-bfd into develop
6 files
+ 51
3
Compare changes
  • Side-by-side
  • Inline
Files
6
---
- name: Update Trunk interface BFD on "{{ inventory_hostname }}" [CHECK ONLY][JUNIPER]
junipernetworks.junos.junos_config:
update: 'replace'
src: "/var/tmp/ansible_run_{{ opid }}/{{ config_object }}.conf"
src_format: set
check_commit: true
diff: true
when: >
verb == "update" and
remaining_side.vendor == "juniper" and
dry_run | ansible.builtin.bool
- name: Update Trunk interface BFD on "{{ inventory_hostname }}" [AND COMMIT][JUNIPER]
junipernetworks.junos.junos_config:
update: 'replace'
src: "/var/tmp/ansible_run_{{ opid }}/{{ config_object }}.conf"
src_format: set
comment: "{{ commit_comment }}"
diff: true
when: >
verb == "update" and
remaining_side.vendor == "juniper" and
not (dry_run | ansible.builtin.bool)
Loading