From 8944be32bf1c95949cca171b6c4bce43abea7042 Mon Sep 17 00:00:00 2001 From: John Mahowald <14261342+jpmahowald@users.noreply.github.com> Date: Mon, 29 Jul 2019 15:09:05 -0500 Subject: [PATCH] lvg: simplify pesize description (#59699) Remove confusing phrase about pesize as a "multiple of 128KiB". Allowed values are anything accepted by vgcreate -s, powers of 2, minimum 1K for lvm2. As pesize less than 1M is accepted since Ansible 2.6, close #29295 --- lib/ansible/modules/system/lvg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/lvg.py b/lib/ansible/modules/system/lvg.py index 43b6f69166f..c5a3c099d50 100644 --- a/lib/ansible/modules/system/lvg.py +++ b/lib/ansible/modules/system/lvg.py @@ -35,7 +35,7 @@ options: type: list pesize: description: - - The size of the physical extent. pesize must be a power of 2, or multiple of 128KiB. + - The size of the physical extent. pesize must be a power of 2. - Since Ansible 2.6, pesize can be optionally suffixed by a UNIT (k/K/m/M/g/G), default unit is megabyte. type: str default: "4"