icinga2_feature – Manage Icinga2 feature

From Get docs
Ansible/docs/2.7/modules/icinga2 feature module


icinga2_feature – Manage Icinga2 feature

New in version 2.3.


Synopsis

  • This module can be used to enable or disable an Icinga2 feature.

Parameters

Parameter Choices/Defaults Comments

name

- / required

This is the feature name to enable or disable.

state

-

  • present

  • absent

If set to present and feature is disabled, then feature is enabled.

If set to present and feature is already enabled, then nothing is changed.

If set to absent and feature is enabled, then feature is disabled.

If set to absent and feature is already disabled, then nothing is changed.



Examples

- name: Enable ido-pgsql feature
  icinga2_feature:
    name: ido-pgsql
    state: present

- name: Disable api feature
  icinga2_feature:
    name: api
    state: absent

Status

Authors

  • Loic Blot (@nerzhul)

Hint

If you notice any issues in this documentation you can edit this document to improve it.


© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.7/modules/icinga2_feature_module.html