mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
Add seealso section to Windows and related modules (#49845)
* Add seealso section to Windows and related modules * Fixes after review
This commit is contained in:
parent
79947245e2
commit
26474c6902
105 changed files with 479 additions and 129 deletions
|
@ -34,6 +34,9 @@ options:
|
|||
- Data to return for the C(ping) return value.
|
||||
- If this parameter is set to C(crash), the module will cause an exception.
|
||||
default: pong
|
||||
seealso:
|
||||
- module: net_ping
|
||||
- module: win_ping
|
||||
author:
|
||||
- Ansible Core Team
|
||||
- Michael DeHaan
|
||||
|
|
|
@ -55,6 +55,8 @@ options:
|
|||
type: str
|
||||
notes:
|
||||
- For Windows targets, use the M(win_reboot) module instead.
|
||||
seealso:
|
||||
- module: win_reboot
|
||||
author:
|
||||
- Matt Davis (@nitzmahone)
|
||||
- Sam Doran (@samdoran)
|
||||
|
|
|
@ -14,9 +14,6 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = '''
|
||||
---
|
||||
module: service
|
||||
author:
|
||||
- Ansible Core Team
|
||||
- Michael DeHaan
|
||||
version_added: "0.1"
|
||||
short_description: Manage services
|
||||
description:
|
||||
|
@ -72,6 +69,11 @@ options:
|
|||
version_added: 2.2
|
||||
notes:
|
||||
- For Windows targets, use the M(win_service) module instead.
|
||||
seealso:
|
||||
- module: win_service
|
||||
author:
|
||||
- Ansible Core Team
|
||||
- Michael DeHaan
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue