mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554)
* Remove 1.1.1.1 from *_config tests * remove from *_smoke and *_system * Miscellaneous other tests * Remove from module documentation as well * Remove from unit tests as well * Remove accidental duplication from rebase
This commit is contained in:
parent
91eb4a034e
commit
82dfa542c2
111 changed files with 1136 additions and 1136 deletions
|
@ -73,30 +73,30 @@ proposed:
|
|||
description: k/v pairs of parameters passed into module
|
||||
returned: always
|
||||
type: dict
|
||||
sample: {"address": "2.2.2.2", "key_id": "48",
|
||||
sample: {"address": "192.0.2.2", "key_id": "48",
|
||||
"peer_type": "server", "prefer": "enabled",
|
||||
"source": "3.3.3.3", "source_type": "source"}
|
||||
"source": "192.0.2.3", "source_type": "source"}
|
||||
existing:
|
||||
description:
|
||||
- k/v pairs of existing ntp server/peer
|
||||
returned: always
|
||||
type: dict
|
||||
sample: {"address": "2.2.2.2", "key_id": "32",
|
||||
sample: {"address": "192.0.2.2", "key_id": "32",
|
||||
"peer_type": "server", "prefer": "enabled",
|
||||
"source": "ethernet2/1", "source_type": "source-interface"}
|
||||
end_state:
|
||||
description: k/v pairs of ntp info after module execution
|
||||
returned: always
|
||||
type: dict
|
||||
sample: {"address": "2.2.2.2", "key_id": "48",
|
||||
sample: {"address": "192.0.2.2", "key_id": "48",
|
||||
"peer_type": "server", "prefer": "enabled",
|
||||
"source": "3.3.3.3", "source_type": "source"}
|
||||
"source": "192.0.2.3", "source_type": "source"}
|
||||
updates:
|
||||
description: command sent to the device
|
||||
returned: always
|
||||
type: list
|
||||
sample: ["ntp server 2.2.2.2 prefer key 48",
|
||||
"no ntp source-interface ethernet2/1", "ntp source 3.3.3.3"]
|
||||
sample: ["ntp server 192.0.2.2 prefer key 48",
|
||||
"no ntp source-interface ethernet2/1", "ntp source 192.0.2.3"]
|
||||
changed:
|
||||
description: check to see if a change was made on the device
|
||||
returned: always
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue