mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 12:51:25 -07:00
(cherry picked from commit ddc989ec6d
)
Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
c5ff49db56
commit
5a2e7f9b1b
38 changed files with 242 additions and 228 deletions
|
@ -83,7 +83,7 @@ options:
|
|||
responds to an initial request with a 401 status. Since some basic auth services do not properly
|
||||
send a 401, logins will fail. This option forces the sending of the Basic authentication header
|
||||
upon initial request.
|
||||
default: 'no'
|
||||
default: false
|
||||
type: bool
|
||||
version_added: '0.2.0'
|
||||
dest:
|
||||
|
@ -105,9 +105,9 @@ options:
|
|||
default: 10
|
||||
validate_certs:
|
||||
description:
|
||||
- If C(no), SSL certificates will not be validated. This should only be set to C(no) when no other option exists.
|
||||
- If C(false), SSL certificates will not be validated. This should only be set to C(false) when no other option exists.
|
||||
type: bool
|
||||
default: 'yes'
|
||||
default: true
|
||||
client_cert:
|
||||
description:
|
||||
- PEM formatted certificate chain file to be used for SSL client authentication.
|
||||
|
@ -122,11 +122,11 @@ options:
|
|||
version_added: '1.3.0'
|
||||
keep_name:
|
||||
description:
|
||||
- If C(yes), the downloaded artifact's name is preserved, i.e the version number remains part of it.
|
||||
- If C(true), the downloaded artifact's name is preserved, i.e the version number remains part of it.
|
||||
- This option only has effect when C(dest) is a directory and C(version) is set to C(latest) or C(version_by_spec)
|
||||
is defined.
|
||||
type: bool
|
||||
default: 'no'
|
||||
default: false
|
||||
verify_checksum:
|
||||
type: str
|
||||
description:
|
||||
|
@ -214,7 +214,7 @@ EXAMPLES = '''
|
|||
artifact_id: spring-core
|
||||
group_id: org.springframework
|
||||
dest: /tmp/
|
||||
keep_name: yes
|
||||
keep_name: true
|
||||
|
||||
- name: Download the latest version of the JUnit framework artifact from Maven local
|
||||
community.general.maven_artifact:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue