dd
This commit is contained in:
parent
6b34e3a91c
commit
0f0d9afb6b
1 changed files with 6 additions and 5 deletions
|
@ -1,12 +1,13 @@
|
|||
---
|
||||
- name: block bucket
|
||||
- name: Block bucket creation with error handling
|
||||
block:
|
||||
- name: setup minio buckets
|
||||
- name: Setup MinIO buckets
|
||||
ansible.builtin.command: "{{ minio_client_bin }} --dp mb {{ minio_root_alias }}/{{ item.name }}"
|
||||
loop: "{{ minio_buckets }}"
|
||||
register: buckets
|
||||
rescue:
|
||||
- name: print x
|
||||
- name: Check if bucket already exists
|
||||
ansible.builtin.debug:
|
||||
msg: "bucket exists already"
|
||||
when: 'not "Your previous request to create the named bucket succeeded and you already own it." in buckets.stderr'
|
||||
msg: "Bucket {{ item.item.name }} already exists."
|
||||
loop: "{{ buckets.results }}"
|
||||
when: '"Your previous request to create the named bucket succeeded and you already own it." in item.stderr'
|
||||
|
|
Loading…
Reference in a new issue