mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
622 B
YAML
48 lines
622 B
YAML
5 years ago
|
---
|
||
|
merged:
|
||
|
before: {}
|
||
|
|
||
|
commands:
|
||
|
- "lldp holdtime 10"
|
||
|
- "lldp run"
|
||
|
- "lldp timer 20"
|
||
|
- "lldp reinit 3"
|
||
|
|
||
|
after:
|
||
|
timer: 20
|
||
|
holdtime: 10
|
||
|
reinit: 3
|
||
|
enable: True
|
||
|
|
||
|
replaced:
|
||
|
before:
|
||
|
timer: 100
|
||
|
holdtime: 10
|
||
|
reinit: 3
|
||
|
enable: True
|
||
|
|
||
|
commands:
|
||
|
- "no lldp run"
|
||
|
- "no lldp timer"
|
||
|
- "lldp holdtime 20"
|
||
|
- "lldp reinit 5"
|
||
|
|
||
|
after:
|
||
|
holdtime: 10
|
||
|
reinit: 3
|
||
|
|
||
|
deleted:
|
||
|
before:
|
||
|
timer: 100
|
||
|
holdtime: 10
|
||
|
reinit: 3
|
||
|
enable: True
|
||
|
|
||
|
commands:
|
||
|
- "no lldp holdtime"
|
||
|
- "no lldp run"
|
||
|
- "no lldp timer"
|
||
|
- "no lldp reinit"
|
||
|
|
||
|
after: {}
|