fix aggregate doc example (#28528)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
Trishna Guha 2017-08-23 02:16:45 +05:30 committed by GitHub
parent c2e41bf1ef
commit 4271f6e5e6
3 changed files with 10 additions and 12 deletions

View file

@ -62,15 +62,15 @@ EXAMPLES = """
- name: Create aggregate of LLDP interface configurations
net_lldp_interface:
aggregate:
- name: eth1
- name: eth2
- { name: eth1 }
- { name: eth2 }
state: present
- name: Delete aggregate of LLDP interface configurations
net_lldp_interface:
aggregate:
- name: eth1
- name: eth2
- { name: eth1 }
- { name: eth2 }
state: absent
"""