mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
Mutually reference Windows and non-Windows modules (#25482)
* Mutually reference Windows and non-Windows modules To make it easier for Windows or non-Windows users to find the relevant module information, we are mutually referencing both variants in their documentation. We are also adding a special note if a module works on both Windows and non-Windows targets. * Mutually reference Windows and non-Windows modules To make it easier for Windows or non-Windows users to find the relevant module information, we are mutually referencing both variants in their documentation. We are also adding a special note if a module works on both Windows and non-Windows targets. * Replace 'look at' with 'use', as requested ci_complete
This commit is contained in:
parent
8765eadb30
commit
7d7051fc54
50 changed files with 137 additions and 20 deletions
|
@ -33,6 +33,7 @@ author:
|
|||
short_description: Generic OS package manager
|
||||
description:
|
||||
- Installs, upgrade and removes packages using the underlying OS package manager.
|
||||
- For Windows targets, use the M(win_package) module instead.
|
||||
options:
|
||||
name:
|
||||
description:
|
||||
|
@ -53,6 +54,7 @@ requirements:
|
|||
- Whatever is required for the package plugins specific for each system.
|
||||
notes:
|
||||
- This module actually calls the pertinent package modules for each system (apt, yum, etc).
|
||||
- For Windows targets, use the M(win_package) module instead.
|
||||
'''
|
||||
EXAMPLES = '''
|
||||
- name: install the latest version of ntpdate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue