mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-21 20:30:21 -07:00
Use semantic markup (modules d-g) (#6672)
* Use semantic markup. * 'ignore:' is no longer needed. * E() now works better.
This commit is contained in:
parent
6fc1df9b83
commit
2ed82e0318
34 changed files with 307 additions and 306 deletions
|
@ -38,7 +38,7 @@ options:
|
|||
description:
|
||||
- Package name spec to add or exclude to or delete from the C(locklist)
|
||||
using the format expected by the C(dnf repoquery) command.
|
||||
- This parameter is mutually exclusive with I(state=clean).
|
||||
- This parameter is mutually exclusive with O(state=clean).
|
||||
type: list
|
||||
required: false
|
||||
elements: str
|
||||
|
@ -52,19 +52,19 @@ options:
|
|||
default: false
|
||||
state:
|
||||
description:
|
||||
- Whether to add (C(present) or C(excluded)) to or remove (C(absent) or
|
||||
C(clean)) from the C(locklist).
|
||||
- C(present) will add a package name spec to the C(locklist). If there is a
|
||||
- Whether to add (V(present) or V(excluded)) to or remove (V(absent) or
|
||||
V(clean)) from the C(locklist).
|
||||
- V(present) will add a package name spec to the C(locklist). If there is a
|
||||
installed package that matches, then only that version will be added.
|
||||
Otherwise, all available package versions will be added.
|
||||
- C(excluded) will add a package name spec as excluded to the
|
||||
- V(excluded) will add a package name spec as excluded to the
|
||||
C(locklist). It means that packages represented by the package name
|
||||
spec will be excluded from transaction operations. All available
|
||||
package versions will be added.
|
||||
- C(absent) will delete entries in the C(locklist) that match the
|
||||
- V(absent) will delete entries in the C(locklist) that match the
|
||||
package name spec.
|
||||
- C(clean) will delete all entries in the C(locklist). This option is
|
||||
mutually exclusive with C(name).
|
||||
- V(clean) will delete all entries in the C(locklist). This option is
|
||||
mutually exclusive with O(name).
|
||||
choices: [ 'absent', 'clean', 'excluded', 'present' ]
|
||||
type: str
|
||||
default: present
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue