blob: 0320d8bd4c7cff1b0ddce20cd71d00d9df446e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
---
- hosts: localhost
gather_facts: false
collections:
- infinidat.infinibox
tasks:
- name: POSITIVE test -> Remove thin volume {{ auto_prefix }}vol under pool {{ auto_prefix }}pool
infini_vol:
name: "{{ auto_prefix }}vol"
pool: "{{ auto_prefix }}pool"
state: absent
user: "{{ user }}"
password: "{{ password }}"
system: "{{ system }}"
- name: IDEMPOTENT test -> Remove volume {{ auto_prefix }}vol under pool {{ auto_prefix }}pool again
infini_vol:
name: "{{ auto_prefix }}vol"
pool: "{{ auto_prefix }}pool"
state: absent
user: "{{ user }}"
password: "{{ password }}"
system: "{{ system }}"
- name: POSITIVE test -> Remove pool {{ auto_prefix }}pool
infini_pool:
name: "{{ auto_prefix }}pool"
state: absent
user: "{{ user }}"
password: "{{ password }}"
system: "{{ system }}"
|