summaryrefslogtreecommitdiff
path: root/test/integration/targets/lvg/tasks/main.yml
blob: a57f591bf02368c45cbc3be306027e182151c6f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- name: Install required packages (Linux)
  package:
    name: lvm2
    state: present
  when: ansible_system == 'Linux'

- name: Test lvg module
  block:
    - import_tasks: setup.yml

    - import_tasks: test_indempotency.yml

    - import_tasks: test_grow_reduce.yml
  always:
    - import_tasks: teardown.yml