feat: use CmdRunner for LVM commands (#11746)

* feat: use CmdRunner for LVM commands

* Update plugins/module_utils/lvm.py

Co-authored-by: Felix Fontein <felix@fontein.de>

* rename module util to _lvm

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Alexei Znamensky
2026-04-12 23:47:51 +12:00
committed by GitHub
parent f4f2bfe847
commit 61060532f9
4 changed files with 512 additions and 54 deletions

3
.github/BOTMETA.yml vendored
View File

@@ -381,6 +381,9 @@ files:
maintainers: russoz
$module_utils/_lxc.py:
maintainers: russoz
$module_utils/_lvm.py:
labels: lvm
maintainers: russoz
$module_utils/manageiq.py:
labels: manageiq
maintainers: $team_manageiq

View File

@@ -0,0 +1,486 @@
# Copyright (c) 2026, Alexei Znamensky <russoz@gmail.com>
# 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
# Note that this module util is **PRIVATE** to the collection. It can have breaking changes at any time.
# Do not use this from other collections or standalone plugins/modules!
from __future__ import annotations
import typing as t
from ansible_collections.community.general.plugins.module_utils.cmd_runner import CmdRunner, cmd_runner_fmt
if t.TYPE_CHECKING:
from ansible.module_utils.basic import AnsibleModule
# Options shared by the reporting commands: pvs, vgs, lvs (and pvdisplay in column mode).
_REPORT_ARG_FORMATS = dict(
noheadings=cmd_runner_fmt.as_fixed("--noheadings"),
nosuffix=cmd_runner_fmt.as_fixed("--nosuffix"),
readonly=cmd_runner_fmt.as_fixed("--readonly"),
units=cmd_runner_fmt.as_opt_val("--units"),
separator=cmd_runner_fmt.as_opt_val("--separator"),
fields=cmd_runner_fmt.as_opt_val("-o"),
select=cmd_runner_fmt.as_opt_val("--select"),
)
# ---- PV commands ----
def pvs_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvs). Used by: community.general.lvg, community.general.lvm_pv,
community.general.lvm_pv_move_data, community.general.lvg_rename,
community.general.filesystem.
Suggested arg_formats keys: noheadings nosuffix readonly units separator fields select devices
"""
return CmdRunner(
module,
command="pvs",
arg_formats=dict(
**_REPORT_ARG_FORMATS,
devices=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def pvcreate_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvcreate). Used by: community.general.lvg, community.general.lvm_pv,
community.general.filesystem.
Suggested arg_formats keys: force yes devices
"""
return CmdRunner(
module,
command="pvcreate",
arg_formats=dict(
force=cmd_runner_fmt.as_bool("-f"),
yes=cmd_runner_fmt.as_bool("--yes"),
devices=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def pvchange_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvchange). Used by: community.general.lvg, community.general.filesystem.
Suggested arg_formats keys: uuid yes device
"""
return CmdRunner(
module,
command="pvchange",
arg_formats=dict(
uuid=cmd_runner_fmt.as_bool("-u"),
yes=cmd_runner_fmt.as_bool("--yes"),
device=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def pvresize_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvresize). Used by: community.general.lvg, community.general.lvm_pv,
community.general.filesystem.
Suggested arg_formats keys: set_size device
"""
return CmdRunner(
module,
command="pvresize",
arg_formats=dict(
set_size=cmd_runner_fmt.as_opt_val("--setphysicalvolumesize"),
device=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def pvremove_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvremove). Used by: community.general.lvm_pv.
Suggested arg_formats keys: yes force device
Note: C(force=True) passes C(-ff), which removes PVs even when part of a VG.
"""
return CmdRunner(
module,
command="pvremove",
arg_formats=dict(
yes=cmd_runner_fmt.as_bool("-y"),
force=cmd_runner_fmt.as_bool("-ff"),
device=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def pvdisplay_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvdisplay). Used by: community.general.lvg.
Enables machine-readable output via C(--columns). Fields such as C(dev_size),
C(pe_start), and C(vg_extent_size) are only available through C(pvdisplay),
not C(pvs).
Suggested arg_formats keys: columns noheadings nosuffix units separator fields device
"""
return CmdRunner(
module,
command="pvdisplay",
arg_formats=dict(
columns=cmd_runner_fmt.as_fixed("--columns"),
**_REPORT_ARG_FORMATS,
device=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def pvmove_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(pvmove). Used by: community.general.lvm_pv_move_data.
Suggested arg_formats keys: auto_answer atomic autobackup verbosity source destination
Note: C(auto_answer) matches the O(auto_answer) module parameter.
Pass C(autobackup) as a boolean; it maps to C(--autobackup y/n).
"""
return CmdRunner(
module,
command="pvmove",
arg_formats=dict(
auto_answer=cmd_runner_fmt.as_bool("-y"),
atomic=cmd_runner_fmt.as_bool("--atomic"),
autobackup=cmd_runner_fmt.as_bool(["--autobackup", "y"], ["--autobackup", "n"], ignore_none=False),
verbosity=cmd_runner_fmt.as_func(lambda v: [f"-{'v' * v}"] if v > 0 else []),
source=cmd_runner_fmt.as_list(),
destination=cmd_runner_fmt.as_list(),
),
**kwargs,
)
# ---- VG commands ----
def vgs_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgs). Used by: community.general.lvol, community.general.lvg,
community.general.lvg_rename.
Suggested arg_formats keys: noheadings nosuffix readonly units separator fields select vg
"""
return CmdRunner(
module,
command="vgs",
arg_formats=dict(
**_REPORT_ARG_FORMATS,
vg=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def vgcreate_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgcreate). Used by: community.general.lvg.
Suggested args order: pesize yes setautoactivation vg pvs
Note: C(vg) and C(pvs) are positional — C(vg) must appear before C(pvs)
in the args_order string. C(pvs) matches the O(pvs) module parameter in
community.general.lvg.
"""
return CmdRunner(
module,
command="vgcreate",
arg_formats=dict(
pesize=cmd_runner_fmt.as_opt_val("-s"),
yes=cmd_runner_fmt.as_bool("--yes"),
setautoactivation=cmd_runner_fmt.as_bool(
["--setautoactivation", "y"],
["--setautoactivation", "n"],
ignore_none=False,
),
vg=cmd_runner_fmt.as_list(),
pvs=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def vgchange_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgchange). Used by: community.general.lvg, community.general.lvg_rename.
Suggested arg_formats keys: activate uuid setautoactivation help vg
Note: C(activate) and C(setautoactivation) are passed as booleans and map to
C(--activate y/n) and C(--setautoactivation y/n) respectively.
"""
return CmdRunner(
module,
command="vgchange",
arg_formats=dict(
activate=cmd_runner_fmt.as_bool(
["--activate", "y"],
["--activate", "n"],
ignore_none=False,
),
uuid=cmd_runner_fmt.as_bool("-u"),
setautoactivation=cmd_runner_fmt.as_bool(
["--setautoactivation", "y"],
["--setautoactivation", "n"],
ignore_none=False,
),
help=cmd_runner_fmt.as_fixed("--help"),
vg=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def vgextend_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgextend). Used by: community.general.lvg.
Suggested args order: vg pvs
Note: C(vg) must appear before C(pvs) in the args_order string.
C(pvs) matches the O(pvs) module parameter in community.general.lvg,
but callers must pass the subset of PVs to add explicitly.
"""
return CmdRunner(
module,
command="vgextend",
arg_formats=dict(
vg=cmd_runner_fmt.as_list(),
pvs=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def vgreduce_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgreduce). Used by: community.general.lvg.
Suggested args order: force vg pvs
Note: C(vg) must appear before C(pvs) in the args_order string.
C(pvs) matches the O(pvs) module parameter in community.general.lvg,
but callers must pass the subset of PVs to remove explicitly.
"""
return CmdRunner(
module,
command="vgreduce",
arg_formats=dict(
force=cmd_runner_fmt.as_bool("--force"),
vg=cmd_runner_fmt.as_list(),
pvs=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def vgremove_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgremove). Used by: community.general.lvg.
Suggested arg_formats keys: force yes vg
"""
return CmdRunner(
module,
command="vgremove",
arg_formats=dict(
force=cmd_runner_fmt.as_bool("--force"),
yes=cmd_runner_fmt.as_bool("--yes"),
vg=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def vgrename_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(vgrename). Used by: community.general.lvg_rename.
Suggested args order: vg vg_new
Note: C(vg) (old name or UUID) must appear before C(vg_new) in the args_order string.
"""
return CmdRunner(
module,
command="vgrename",
arg_formats=dict(
vg=cmd_runner_fmt.as_list(),
vg_new=cmd_runner_fmt.as_list(),
),
**kwargs,
)
# ---- LV commands ----
def lvs_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(lvs). Used by: community.general.lvol.
Suggested arg_formats keys: all noheadings nosuffix units separator fields select vg
Note: C(all) includes hidden internal LVs such as thin pool metadata.
"""
return CmdRunner(
module,
command="lvs",
arg_formats=dict(
all=cmd_runner_fmt.as_fixed("-a"),
**_REPORT_ARG_FORMATS,
vg=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def lvcreate_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(lvcreate). Used by: community.general.lvol, community.general.lxc_container.
Suggested args order (normal LV): test yes lv size_L vg pvs
Suggested args order (snapshot): test yes size_L is_snapshot lv vg
Suggested args order (thin pool): test yes lv size_L thin vg pvs
Suggested args order (thin vol): test yes lv size_V thin vg
Note: C(vg) must appear after all option args and before C(pvs).
For snapshots and thin volumes, pass the origin as C(vg="{vg}/{lv}").
Intentional mismatches with module parameters:
- C(lv) matches O(lv) in community.general.lvol (the LV name, passed as C(-n lv)).
- C(is_snapshot) is a boolean flag for C(-s); it differs from the O(snapshot)
module parameter, which is a string holding the snapshot name.
- C(thin) is a boolean flag for C(-T); it differs from the O(thinpool)
module parameter, which is the pool name string.
- C(size_L), C(size_l), C(size_V) cannot match the O(size) module parameter
because one module param maps to three distinct CLI size options; callers
must always pass the appropriate size key explicitly.
- C(pvs) matches O(pvs) in community.general.lvol; callers must pass the value
explicitly since it is the list of PV paths, not the full module param value.
"""
return CmdRunner(
module,
command="lvcreate",
arg_formats=dict(
test=cmd_runner_fmt.as_bool("--test"),
yes=cmd_runner_fmt.as_bool("--yes"),
lv=cmd_runner_fmt.as_opt_val("-n"),
size_L=cmd_runner_fmt.as_opt_val("-L"),
size_l=cmd_runner_fmt.as_opt_val("-l"),
size_V=cmd_runner_fmt.as_opt_val("-V"),
is_snapshot=cmd_runner_fmt.as_bool("-s"),
thin=cmd_runner_fmt.as_fixed("-T"),
vg=cmd_runner_fmt.as_list(),
pvs=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def lvchange_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(lvchange). Used by: community.general.lvol.
Suggested arg_formats keys: active lv
Note: C(active) matches the O(active) module parameter in community.general.lvol.
It maps to C(-ay) when true and C(-an) when false.
"""
return CmdRunner(
module,
command="lvchange",
arg_formats=dict(
active=cmd_runner_fmt.as_bool("-ay", "-an", ignore_none=False),
lv=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def lvextend_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(lvextend). Used by: community.general.lvol.
Suggested args order: test resizefs size_L lv pvs
(use size_l instead of size_L when sizing by extents or percentage)
Note: C(lv) must appear before C(pvs) in the args_order string.
C(pvs) matches the O(pvs) module parameter in community.general.lvol.
"""
return CmdRunner(
module,
command="lvextend",
arg_formats=dict(
test=cmd_runner_fmt.as_bool("--test"),
resizefs=cmd_runner_fmt.as_bool("--resizefs"),
size_L=cmd_runner_fmt.as_opt_val("-L"),
size_l=cmd_runner_fmt.as_opt_val("-l"),
lv=cmd_runner_fmt.as_list(),
pvs=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def lvreduce_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(lvreduce). Used by: community.general.lvol.
Suggested args order: test force resizefs size_L lv pvs
(use size_l instead of size_L when sizing by extents or percentage)
Note: C(lv) must appear before C(pvs) in the args_order string.
C(pvs) matches the O(pvs) module parameter in community.general.lvol.
"""
return CmdRunner(
module,
command="lvreduce",
arg_formats=dict(
test=cmd_runner_fmt.as_bool("--test"),
force=cmd_runner_fmt.as_bool("--force"),
resizefs=cmd_runner_fmt.as_bool("--resizefs"),
size_L=cmd_runner_fmt.as_opt_val("-L"),
size_l=cmd_runner_fmt.as_opt_val("-l"),
lv=cmd_runner_fmt.as_list(),
pvs=cmd_runner_fmt.as_list(),
),
**kwargs,
)
def lvremove_runner(module: AnsibleModule, **kwargs) -> CmdRunner:
"""
Runner for C(lvremove). Used by: community.general.lvol, community.general.lxc_container.
Suggested arg_formats keys: test force yes lv
"""
return CmdRunner(
module,
command="lvremove",
arg_formats=dict(
test=cmd_runner_fmt.as_bool("--test"),
force=cmd_runner_fmt.as_bool("--force"),
yes=cmd_runner_fmt.as_bool("--yes"),
lv=cmd_runner_fmt.as_list(),
),
**kwargs,
)

View File

@@ -54,6 +54,8 @@ EXAMPLES = r"""
from ansible.module_utils.basic import AnsibleModule
from ansible_collections.community.general.plugins.module_utils._lvm import vgrename_runner, vgs_runner
argument_spec = dict(
vg=dict(type="str", required=True),
vg_new=dict(type="str", required=True),
@@ -70,6 +72,8 @@ class LvgRename:
self.module = module
self.result = {"changed": False}
self.vg_list = []
self._vgs = vgs_runner(module)
self._vgrename = vgrename_runner(module)
self._load_params()
def run(self):
@@ -103,9 +107,8 @@ class LvgRename:
def _load_vg_list(self):
"""Load the VGs from the system."""
vgs_cmd = self.module.get_bin_path("vgs", required=True)
vgs_cmd_with_opts = [vgs_cmd, "--noheadings", "--separator", ";", "-o", "vg_name,vg_uuid"]
dummy, vg_raw_list, dummy = self.module.run_command(vgs_cmd_with_opts, check_rc=True)
with self._vgs("noheadings separator fields") as ctx:
dummy, vg_raw_list, dummy = ctx.run(separator=";", fields="vg_name,vg_uuid")
for vg_info in vg_raw_list.splitlines():
vg_name, vg_uuid = vg_info.strip().split(";")
@@ -135,8 +138,6 @@ class LvgRename:
def _rename_vg(self):
"""Renames the volume group."""
vgrename_cmd = self.module.get_bin_path("vgrename", required=True)
if self.module._diff:
self.result["diff"] = {"before": {"vg": self.vg}, "after": {"vg": self.vg_new}}
@@ -144,8 +145,8 @@ class LvgRename:
self.result["msg"] = f"Running in check mode. The module would rename VG {self.vg} to {self.vg_new}."
self.result["changed"] = True
else:
vgrename_cmd_with_opts = [vgrename_cmd, self.vg, self.vg_new]
dummy, vg_rename_out, dummy = self.module.run_command(vgrename_cmd_with_opts, check_rc=True)
with self._vgrename("vg vg_new") as ctx:
dummy, vg_rename_out, dummy = ctx.run()
self.result["msg"] = vg_rename_out
self.result["changed"] = True

View File

@@ -74,7 +74,7 @@ import os
from ansible.module_utils.basic import AnsibleModule
from ansible_collections.community.general.plugins.module_utils.cmd_runner import CmdRunner, cmd_runner_fmt
from ansible_collections.community.general.plugins.module_utils._lvm import pvmove_runner, pvs_runner
def main():
@@ -89,18 +89,8 @@ def main():
supports_check_mode=True,
)
pvs_runner = CmdRunner(
module,
command="pvs",
arg_formats=dict(
noheadings=cmd_runner_fmt.as_fixed("--noheadings"),
readonly=cmd_runner_fmt.as_fixed("--readonly"),
vg_name=cmd_runner_fmt.as_fixed("-o", "vg_name"),
pv_pe_alloc_count=cmd_runner_fmt.as_fixed("-o", "pv_pe_alloc_count"),
pv_pe_count=cmd_runner_fmt.as_fixed("-o", "pv_pe_count"),
device=cmd_runner_fmt.as_list(),
),
)
pvs = pvs_runner(module)
pvmove = pvmove_runner(module)
source = module.params["source"]
destination = module.params["destination"]
@@ -116,24 +106,16 @@ def main():
if source == destination:
module.fail_json(msg="Source and destination devices must be different")
def run_pvs_command(arguments, device):
with pvs_runner(arguments) as ctx:
rc, out, err = ctx.run(device=device)
def run_pvs_field(field, device):
with pvs("noheadings fields devices") as ctx:
rc, out, err = ctx.run(fields=field, devices=[device])
if rc != 0:
module.fail_json(
msg=f"Command failed: {err}",
stdout=out,
stderr=err,
rc=rc,
cmd=ctx.cmd,
arguments=arguments,
device=device,
)
module.fail_json(msg=f"Command failed: {err}", stdout=out, stderr=err, rc=rc, cmd=ctx.cmd)
return out.strip()
def is_pv(device):
with pvs_runner("noheadings readonly device", check_rc=False) as ctx:
rc, out, err = ctx.run(device=device)
with pvs("noheadings readonly devices", check_rc=False) as ctx:
rc, dummy, dummy = ctx.run(devices=[device])
return rc == 0
if not is_pv(source):
@@ -141,8 +123,8 @@ def main():
if not is_pv(destination):
module.fail_json(msg=f"Destination device {destination} is not a PV")
vg_src = run_pvs_command("noheadings vg_name device", source)
vg_dest = run_pvs_command("noheadings vg_name device", destination)
vg_src = run_pvs_field("vg_name", source)
vg_dest = run_pvs_field("vg_name", destination)
if vg_src != vg_dest:
module.fail_json(
msg=f"Source and destination must be in the same VG. Source VG: '{vg_src}', Destination VG: '{vg_dest}'."
@@ -150,7 +132,7 @@ def main():
def get_allocated_pe(device):
try:
return int(run_pvs_command("noheadings pv_pe_alloc_count device", device))
return int(run_pvs_field("pv_pe_alloc_count", device))
except ValueError:
module.fail_json(msg=f"Invalid allocated PE count for device {device}")
@@ -161,7 +143,7 @@ def main():
# Check destination has enough free space
def get_total_pe(device):
try:
return int(run_pvs_command("noheadings pv_pe_count device", device))
return int(run_pvs_field("pv_pe_count", device))
except ValueError:
module.fail_json(msg=f"Invalid total PE count for device {device}")
@@ -181,22 +163,8 @@ def main():
changed = True
actions.append(f"would move data from {source} to {destination}")
else:
pvmove_runner = CmdRunner(
module,
command="pvmove",
arg_formats=dict(
auto_answer=cmd_runner_fmt.as_bool("-y"),
atomic=cmd_runner_fmt.as_bool("--atomic"),
autobackup=cmd_runner_fmt.as_fixed("--autobackup", "y" if module.params["autobackup"] else "n"),
verbosity=cmd_runner_fmt.as_func(lambda v: [f"-{'v' * v}"] if v > 0 else []),
source=cmd_runner_fmt.as_list(),
destination=cmd_runner_fmt.as_list(),
),
)
verbosity = module._verbosity
with pvmove_runner("auto_answer atomic autobackup verbosity source destination") as ctx:
rc, out, err = ctx.run(verbosity=verbosity, source=source, destination=destination)
with pvmove("auto_answer atomic autobackup verbosity source destination") as ctx:
dummy, out, err = ctx.run(verbosity=module._verbosity)
result["stdout"] = out
result["stderr"] = err