community.general.icinga2_feature 模块 – 管理 Icinga2 功能

注意

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

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

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

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

摘要

  • 此模块可用于启用或禁用 Icinga2 功能。

参数

参数

注释

name

字符串 / 必需

这是要启用或禁用的功能名称。

state

字符串

如果设置为 present 且功能已禁用,则启用该功能。

如果设置为 present 且功能已启用,则不会更改任何内容。

如果设置为 absent 且功能已启用,则禁用该功能。

如果设置为 absent 且功能已禁用,则不会更改任何内容。

选项

  • "present" ← (默认)

  • "absent"

属性

属性

支持

描述

check_mode

支持:完全支持

可以在 check_mode 下运行,并在不修改目标的情况下返回更改状态预测。

diff_mode

支持:不支持

在差异模式下,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息。

示例

- name: Enable ido-pgsql feature
  community.general.icinga2_feature:
    name: ido-pgsql
    state: present

- name: Disable api feature
  community.general.icinga2_feature:
    name: api
    state: absent

作者

  • Loic Blot (@nerzhul)