Adjust booleans in packaging modules. (#5154)

This commit is contained in:
Felix Fontein 2022-08-24 19:59:13 +02:00 committed by GitHub
parent be2de15c66
commit ddc989ec6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 242 additions and 228 deletions

View file

@ -24,7 +24,7 @@ options:
name:
description:
- A name or a list of names of the packages.
required: yes
required: true
type: list
elements: str
state:
@ -43,13 +43,13 @@ options:
not already installed.
- Mutually exclusive with I(snapshot).
type: bool
default: no
default: false
snapshot:
description:
- Force C(%c) and C(%m) to expand to C(snapshots), even on a release kernel.
- Mutually exclusive with I(build).
type: bool
default: no
default: false
version_added: 1.3.0
ports_dir:
description:
@ -63,13 +63,13 @@ options:
file(s) in the old packages which are annotated with @extra in
the packaging-list.
type: bool
default: no
default: false
quick:
description:
- Replace or delete packages quickly; do not bother with checksums
before removing normal files.
type: bool
default: no
default: false
notes:
- When used with a C(loop:) each package will be processed individually,
it is much more efficient to pass the list directly to the I(name) option.
@ -95,7 +95,7 @@ EXAMPLES = '''
community.general.openbsd_pkg:
name: nmap
state: present
build: yes
build: true
- name: Specify a pkg flavour with '--'
community.general.openbsd_pkg:
@ -120,13 +120,13 @@ EXAMPLES = '''
- name: Purge a package and it's configuration files
community.general.openbsd_pkg:
name: mpd
clean: yes
clean: true
state: absent
- name: Quickly remove a package without checking checksums
community.general.openbsd_pkg:
name: qt5
quick: yes
quick: true
state: absent
'''