1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-02 16:32:56 +00:00

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

@ -31,7 +31,7 @@ options:
description:
- Do not run unit tests.
type: bool
default: no
default: false
locallib:
description:
- Specify the install base to install modules.
@ -44,12 +44,12 @@ options:
description:
- Use the mirror's index file instead of the CPAN Meta DB.
type: bool
default: no
default: false
installdeps:
description:
- Only install dependencies.
type: bool
default: no
default: false
version:
description:
- Version specification for the perl module. When I(mode) is C(new), C(cpanm) version operators are accepted.
@ -122,7 +122,7 @@ EXAMPLES = '''
mirror: 'http://cpan.cpantesters.org/'
- name: Install Dancer perl package into the system root path
become: yes
become: true
community.general.cpanm:
name: Dancer