From 6980503357c21fb689b49e91b7b57c6143600388 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 16 Jul 2015 16:52:56 -0400 Subject: [PATCH] updated to add missing 'use' option --- lib/ansible/modules/packaging/os/package.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/packaging/os/package.py b/lib/ansible/modules/packaging/os/package.py index 7c94b98a941..288ca83a772 100644 --- a/lib/ansible/modules/packaging/os/package.py +++ b/lib/ansible/modules/packaging/os/package.py @@ -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: