community.general.lvg_rename 模块 – 重命名 LVM 卷组

注意

此模块是 community.general 集合(版本 10.1.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了这个集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install community.general

要在 playbook 中使用它,请指定: community.general.lvg_rename

community.general 7.1.0 中的新增功能

概要

  • 此模块使用 vgchange 命令重命名卷组。

参数

参数

注释

vg

字符串 / 必需

源 VG 的名称或 UUID。

有关有效值,请参阅 vgrename(8)

vg_new

字符串 / 必需

VG 的新名称。

有关有效名称,请参阅 lvm(8)

属性

属性

支持

描述

check_mode

支持: 完全

可以在 check_mode 中运行,并返回更改的状态预测,而无需修改目标。

diff_mode

支持: 完全

当处于 diff 模式时,将返回有关已更改的内容(或可能需要在 check_mode 中更改的内容)的详细信息。

备注

注意

  • 此模块不会修改与 VG 重命名相关的配置,例如 fstab 条目或启动参数。

另请参阅

另请参阅

community.general.lvg

配置 LVM 卷组。

示例

- name: Rename a VG by name
  community.general.lvg_rename:
    vg: vg_orig_name
    vg_new: vg_new_name

- name: Rename a VG by UUID
  community.general.lvg_rename:
    vg_uuid: SNgd0Q-rPYa-dPB8-U1g6-4WZI-qHID-N7y9Vj
    vg_new: vg_new_name

作者

  • Laszlo Szomor (@lszomor)