updated to add missing 'use' option
This commit is contained in:
parent
014459e5ef
commit
6980503357
1 changed files with 9 additions and 1 deletions
|
@ -23,7 +23,10 @@ DOCUMENTATION = '''
|
|||
---
|
||||
module: package
|
||||
version_added: 2.0
|
||||
author: Ansible Core Team
|
||||
author:
|
||||
- Ansible Inc
|
||||
maintainers:
|
||||
- Ansible Core Team
|
||||
short_description: Generic OS package manager
|
||||
description:
|
||||
- Installs, upgrade and removes packages using the underlying OS package manager.
|
||||
|
@ -36,6 +39,11 @@ options:
|
|||
description:
|
||||
- Whether to install (C(present), C(latest)), or remove (C(absent)) a package.
|
||||
required: true
|
||||
use:
|
||||
description:
|
||||
- The required package manager module to use (yum, apt, etc). The default 'auto' will use existing facts or try to autodetect it.
|
||||
required: false
|
||||
default: auto
|
||||
requirements:
|
||||
- Whatever is required for the package plugins specific for each system.
|
||||
notes:
|
||||
|
|
Loading…
Reference in a new issue