mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
Adjust booleans in cloud modules. (#5155)
This commit is contained in:
parent
19ce50f6b9
commit
3a08903e1c
51 changed files with 177 additions and 177 deletions
|
@ -63,7 +63,7 @@ options:
|
|||
from Cloud Files. Setting to false downloads the contents of a container to a single,
|
||||
flat directory
|
||||
type: bool
|
||||
default: 'yes'
|
||||
default: true
|
||||
type:
|
||||
type: str
|
||||
description:
|
||||
|
@ -153,14 +153,14 @@ EXAMPLES = '''
|
|||
method: get
|
||||
src: FileThatDoesNotExist.jpg
|
||||
dest: ~/Downloads/testcont
|
||||
ignore_errors: yes
|
||||
ignore_errors: true
|
||||
|
||||
- name: "Attempt to delete remote object that does not exist"
|
||||
community.general.rax_files_objects:
|
||||
container: testcont
|
||||
method: delete
|
||||
dest: FileThatDoesNotExist.jpg
|
||||
ignore_errors: yes
|
||||
ignore_errors: true
|
||||
|
||||
- name: "Test Cloud Files Objects Metadata"
|
||||
hosts: local
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue