123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ---
- - name: Get running config and reload PS
- hosts: ethernet
- connection: network_cli
- gather_facts: no
- collections:
- - dellemc.os10
- vars_files:
- - test_vars/test_ethernet_vars.yml
- tasks:
- - name: Set facts
- set_fact:
- ansible_ssh_user: "{{ username }}"
- ansible_ssh_pass: "{{ password }}"
- tags: mtu,reload
- - name: View running configurations
- dellos10_command:
- commands: show interface ethernet 1/1/4
- register: var1
- tags: mtu
- - name: Print config
- debug:
- msg: "{{ var1 }}"
- tags: mtu
- - name: Reload switch
- dellos10_command:
- commands:
- - command: 'reload'
- prompt: '\[confirm yes/no\]:?$'
- answer: 'yes'
- tags: reload
|