Puppet: Disable api feature of Icinga 2

refs #9453
This commit is contained in:
Eric Lippmann 2015-07-20 16:44:48 +02:00
parent 33aa78d8b7
commit b74b10a6d0
2 changed files with 7 additions and 2 deletions

View File

@ -39,4 +39,8 @@ class icinga2 {
}
icinga2::feature { [ 'statusdata', 'command', 'compatlog' ]: }
icinga2::feature { 'api':
ensure => absent,
}
}

View File

@ -1,6 +1,6 @@
# Class: icinga2_dev
#
# This class installs Icinga 2 w/ MySQL and provides Icinga 2 test configuration.
# This class installs Icinga 2 w/ MySQL and PostgreSQL and provides Icinga 2 test configuration.
#
# Requires:
#
@ -19,7 +19,8 @@ class icinga2_dev {
include monitoring_test_config
icinga2::config { [
'conf.d/test-config', 'conf.d/commands', 'constants' ]:
'conf.d/test-config', 'conf.d/commands', 'constants',
]:
source => 'puppet:///modules/icinga2_dev',
}