mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-08 09:24:01 -07:00
Native YAML - Network (#3587)
* Fix citrix native yaml * Fix snmp native yaml and connectio * Fix more native syntax * More native syntax * Fix openvswitch native syntax * More YAML code ! * More fixes * Improve nmcli
This commit is contained in:
parent
d092d53198
commit
cb1b8edfa9
15 changed files with 424 additions and 136 deletions
|
@ -53,10 +53,15 @@ notes:
|
|||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
# Send a magic Wake-on-LAN packet to 00:CA:FE:BA:BE:00
|
||||
- local_action: wakeonlan mac=00:CA:FE:BA:BE:00 broadcast=192.168.1.255
|
||||
# Send a magic Wake-on-LAN packet to 00:00:5E:00:53:66
|
||||
- wakeonlan:
|
||||
mac: '00:00:5E:00:53:66'
|
||||
broadcast: 192.0.2.23
|
||||
delegate_to: loclahost
|
||||
|
||||
- wakeonlan: mac=00:CA:FE:BA:BE:00 port=9
|
||||
- wakeonlan:
|
||||
mac: 00:00:5E:00:53:66
|
||||
port: 9
|
||||
delegate_to: localhost
|
||||
'''
|
||||
|
||||
|
@ -123,4 +128,4 @@ def main():
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue