diff --git a/geant/gap_ansible/roles/iptrunk_checks/tasks/check_trunk_interface.yaml b/geant/gap_ansible/roles/iptrunk_checks/tasks/check_trunk_interface.yaml index 25bf3e4121e28cb75757117aed6ad7b32105c853..44014489fc085deac8e13dae7e87d16adb1fe339 100644 --- a/geant/gap_ansible/roles/iptrunk_checks/tasks/check_trunk_interface.yaml +++ b/geant/gap_ansible/roles/iptrunk_checks/tasks/check_trunk_interface.yaml @@ -15,7 +15,7 @@ commands: "ping {{ side_b_ipv4_address.split('/')[0] }} rapid size {{ rapid_ping_size }} count {{ rapid_ping_count }}" register: response - - name: Show rapid ping resulst + - name: Show rapid ping results ansible.builtin.debug: var: response.stdout_lines[0] @@ -24,7 +24,7 @@ commands: "ping {{ side_b_ipv4_address.split('/')[0] }} size {{ mtu_ping_size }} count {{ mtu_ping_count }} do-not-fragment" register: response - - name: Show MTU ping resulst + - name: Show MTU ping results ansible.builtin.debug: var: response.stdout_lines[0]