Skip to content
Permalink
python3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
---
- name: Network Getting Started First Playbook
hosts: vmx
gather_facts: false
tasks:
- name: show bgp summary
junos_command:
commands: show bgp summary
display: xml
when: ansible_network_os == 'junos'
register: _
- debug: msg="{{ _ }}"