mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9de5c0c53c
* enabling resize in pv. * change pvresize default behavior to false * includes changelog on pvresize * punctuation fix Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * fixes typo and changes pvresize_cmd location * Update changelogs/fragments/442-add-new-parameter-pvresize.yaml Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/system/lvg.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * rebase and add EXAMPLE for pvresize * fix wrongly submited merge conflict * Update plugins/modules/system/lvg.py Co-authored-by: Felix Fontein <felix@fontein.de> * adding tests * add test for check_mode * fix identation * Update tests/integration/targets/lvg/tasks/test_pvresize.yml Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update tests/integration/targets/lvg/tasks/test_pvresize.yml Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * fix identation Co-authored-by: CASSIO ALVES <cassioalves@bocombbm.com.br> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: cassio alves <cassio@localhost.localdomain>
17 lines
352 B
YAML
17 lines
352 B
YAML
- 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
|
|
|
|
- import_tasks: test_pvresize.yml
|
|
always:
|
|
- import_tasks: teardown.yml
|