mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-21 20:59:10 +00:00
38 lines
1,022 B
YAML
38 lines
1,022 B
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: "Create volume group on first disk"
|
|
lvg:
|
|
vg: testvg
|
|
pvs: "{{ loop_device1 }}"
|
|
|
|
- name: "get lvm facts"
|
|
setup:
|
|
|
|
- debug: var=ansible_facts.lvm
|
|
|
|
- name: "Assert the testvg span only on first disk"
|
|
assert:
|
|
that:
|
|
- ansible_facts.lvm.pvs[loop_device1].vg == "testvg"
|
|
- 'loop_device2 not in ansible_facts.lvm.pvs or
|
|
ansible_facts.lvm.pvs[loop_device2].vg == ""'
|
|
|
|
- name: "Extend to second disk AND reduce from the first disk"
|
|
lvg:
|
|
vg: testvg
|
|
pvs: "{{ loop_device2 }}"
|
|
|
|
- name: "get lvm facts"
|
|
setup:
|
|
|
|
- debug: var=ansible_facts.lvm
|
|
|
|
- name: "Assert the testvg span only on first disk"
|
|
assert:
|
|
that:
|
|
- 'loop_device1 not in ansible_facts.lvm.pvs or
|
|
ansible_facts.lvm.pvs[loop_device1].vg == ""'
|
|
- ansible_facts.lvm.pvs[loop_device2].vg == "testvg"
|