Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ansible / infinidat / infinibox / playbooks / test_remove_snapshots.yml
Size: Mime:
---
- hosts: localhost
  gather_facts: False
  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 }}"