Files
toallab-automation/reset_port.yml
Patrick Toal 311491a487 Remove state
2019-09-18 00:41:52 -04:00

18 lines
327 B
YAML

- name: Reset Port
hosts: switch01
become_method: enable
become: yes
connection: network_cli
gather_facts: no
tasks:
- name: Shut down port
ios_interface:
name: Gigabit2/0/13
enabled: False
- name: Bring up port
ios_interface:
name: Gigabit2/0/13
enabled: True