updated docs to reflect list/loop lack of sqashing (#32522)

* updated docs to reflect list/loop lack of sqashing

* fix dnf

* line len
This commit is contained in:
Brian Coca 2017-11-20 10:16:19 -05:00 committed by GitHub
parent e19c994f57
commit 8e56133b3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 46 additions and 38 deletions

View file

@ -34,16 +34,15 @@ version_added: "1.1"
options:
name:
description:
- name of package to install/remove
- list of names of packages to install/remove
required: false
default: None
aliases: ['pkg', 'package', 'formula']
path:
description:
- >
':' separated list of paths to search for 'brew' executable. Since A package (I(formula) in homebrew parlance) location is prefixed
relative to the actual path of I(brew) command, providing an alternative I(brew) path enables managing different set of packages in an
alternative location in the system.
- "A ':' separated list of paths to search for 'brew' executable.
Since a package (I(formula) in homebrew parlance) location is prefixed relative to the actual path of I(brew) command,
providing an alternative I(brew) path enables managing different set of packages in an alternative location in the system."
required: false
default: '/usr/local/bin'
state:
@ -73,7 +72,9 @@ options:
default: null
aliases: ['options']
version_added: "1.4"
notes: []
notes:
- When used with a `loop:` each package will be processed individually,
it is much more efficient to pass the list directly to the `name` option.
'''
EXAMPLES = '''
# Install formula foo with 'brew' in default path (C(/usr/local/bin))