0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ansible lvgモジュールのパラメータ

Posted at

#lvgモジュール
##公式
https://docs.ansible.com/ansible/2.9_ja/modules/lvg_module.html#

公式サイトでは、

パラメータ 意味
vg_optitons Additional options to pass to vgcreate when creating the volume group.
と書かれているが、書き方が乗っていない。。
Exampleにも例がのっていない。優しくない。

検証したところ、下記のように指定可能。

- name: タイトル
  lvg: vg名
  pvs: デバイス名
  vg_options: "オプション␣値"

一例)

- name: vgcreate_task
  lvg: volumegroup02
  pvs: /dev/sdc
  vg_options: "--addtag tag1"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?