2022-08-05 14:03:38 +02:00
|
|
|
---
|
|
|
|
# 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
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
- name: Create volume group on disk device
|
|
|
|
lvg:
|
|
|
|
vg: testvg
|
2022-12-21 07:31:46 +01:00
|
|
|
pvs: "{{ loop_device1 }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: Create the volume group again to verify idempotence
|
|
|
|
lvg:
|
|
|
|
vg: testvg
|
2022-12-21 07:31:46 +01:00
|
|
|
pvs: "{{ loop_device1 }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
register: repeat_vg_create
|
|
|
|
|
|
|
|
- name: Do all assertions to verify expected results
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- repeat_vg_create is not changed
|