├── .fixtures.yml ├── .gitignore ├── .mailmap ├── .puppet-lint.rc ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── COPYING ├── Gemfile ├── README.md ├── Rakefile ├── doc └── installation.md ├── lib └── puppet │ ├── icinga2 │ ├── pbkdf2.rb │ └── utils.rb │ └── parser │ └── functions │ ├── icinga2_config_value.rb │ └── icinga2_ticket_id.rb ├── manifests ├── checkplugin.pp ├── conf.pp ├── config.pp ├── config │ └── objectdir.pp ├── database.pp ├── feature.pp ├── feature │ ├── api.pp │ ├── checker.pp │ ├── command.pp │ ├── debuglog.pp │ ├── gelf.pp │ ├── graphite.pp │ ├── ido_mysql.pp │ ├── ido_pgsql.pp │ ├── mainlog.pp │ ├── notification.pp │ ├── opentsdb.pp │ └── syslog.pp ├── init.pp ├── install.pp ├── object │ ├── apiuser.pp │ ├── apply_dependency.pp │ ├── apply_notification_to_host.pp │ ├── apply_notification_to_service.pp │ ├── apply_scheduleddowntime.pp │ ├── apply_service.pp │ ├── checkcommand.pp │ ├── checkresultreader.pp │ ├── compatlogger.pp │ ├── dependency.pp │ ├── endpoint.pp │ ├── eventcommand.pp │ ├── gelfwriter.pp │ ├── graphitewriter.pp │ ├── host.pp │ ├── hostgroup.pp │ ├── icingastatuswriter.pp │ ├── idomysqlconnection.pp │ ├── idopgsqlconnection.pp │ ├── livestatuslistener.pp │ ├── notification.pp │ ├── notificationcommand.pp │ ├── opentsdbwriter.pp │ ├── perfdatawriter.pp │ ├── scheduleddowntime.pp │ ├── service.pp │ ├── servicegroup.pp │ ├── statusdatawriter.pp │ ├── timeperiod.pp │ ├── user.pp │ ├── usergroup.pp │ └── zone.pp ├── objects.pp ├── params.pp ├── pki │ ├── icinga.pp │ └── puppet.pp ├── repo.pp ├── repo │ ├── apt.pp │ └── yum.pp └── service.pp ├── metadata.json ├── spec ├── acceptance │ ├── 10-icinga2_spec.rb │ ├── 30-icinga2_with_pgsql_spec.rb │ ├── 31-icinga2_with_mysql_spec.rb │ └── nodesets │ │ └── debian-7-x86_64-vagrant.yml ├── classes │ ├── icinga2__config_spec.rb │ ├── icinga2__install_spec.rb │ ├── icinga2__pki__icinga_spec.rb │ ├── icinga2__service_spec.rb │ ├── icinga2_feature_api_spec.rb │ ├── icinga2_feature_command_spec.rb │ ├── icinga2_feature_graphite_spec.rb │ ├── icinga2_feature_ido_mysql_spec.rb │ ├── icinga2_feature_ido_pgsql_spec.rb │ ├── icinga2_feature_mainlog_spec.rb │ ├── icinga2_feature_notification_spec.rb │ ├── icinga2_repo_spec.rb │ └── icinga2_spec.rb ├── defines │ ├── icinga2__object │ │ ├── apiuser_spec.rb │ │ ├── apply_dependency_spec.rb │ │ ├── apply_notification_to_host_spec.rb │ │ ├── apply_notification_to_service_spec.rb │ │ ├── apply_service_spec.rb │ │ ├── checkcommand_spec.rb │ │ ├── checkresultreader_spec.rb │ │ ├── compatlogger_spec.rb │ │ ├── dependency_spec.rb │ │ ├── endpoint_spec.rb │ │ ├── eventcommand_spec.rb │ │ ├── gelfwriter_spec.rb │ │ ├── graphitewriter_spec.rb │ │ ├── host_spec.rb │ │ ├── hostgroup_spec.rb │ │ ├── icingastatuswriter_spec.rb │ │ ├── idomysqlconnection_spec.rb │ │ ├── idopgsqlconnection_spec.rb │ │ ├── livestatuslistener_spec.rb │ │ ├── notification_spec.rb │ │ ├── notificationcommand_spec.rb │ │ ├── opentsdbwriter_spec.rb │ │ ├── perfdatawriter_spec.rb │ │ ├── scheduleddowntime_spec.rb │ │ ├── service_spec.rb │ │ ├── servicegroup_spec.rb │ │ ├── statusdatawriter_spec.rb │ │ ├── timeperiod_spec.rb │ │ ├── user_spec.rb │ │ ├── usergroup_spec.rb │ │ └── zone_spec.rb │ ├── icinga2_feature_spec.rb │ └── icinga2_object_apply_scheduleddowntime_spec.rb ├── functions │ └── icinga2_ticket_id_spec.rb ├── spec_helper.rb ├── spec_helper_acceptance.rb └── variants.rb └── templates ├── _header.erb ├── feature ├── api.conf.erb ├── checker.conf.erb ├── command.conf.erb ├── debuglog.conf.erb ├── mainlog.conf.erb ├── notification.conf.erb └── syslog.conf.erb ├── icinga2.conf.erb ├── object ├── apiuser.conf.erb ├── apply_dependency.conf.erb ├── apply_notification_to_host.conf.erb ├── apply_notification_to_service.conf.erb ├── apply_scheduleddowntime.conf.erb ├── apply_service.conf.erb ├── checkcommand.conf.erb ├── checkresultreader.conf.erb ├── compatlogger.conf.erb ├── dependency.conf.erb ├── endpoint.conf.erb ├── eventcommand.conf.erb ├── gelfwriter.conf.erb ├── graphitewriter.conf.erb ├── host.conf.erb ├── hostgroup.conf.erb ├── icingastatuswriter.conf.erb ├── idomysqlconnection.conf.erb ├── idopgsqlconnection.conf.erb ├── livestatuslistener.conf.erb ├── notification.conf.erb ├── notificationcommand.conf.erb ├── opentsdbwriter.conf.erb ├── perfdatawriter.conf.erb ├── scheduleddowntime.conf.erb ├── service.conf.erb ├── servicegroup.conf.erb ├── statusdatawriter.conf.erb ├── timeperiod.conf.erb ├── user.conf.erb ├── usergroup.conf.erb └── zone.conf.erb └── zones.conf.erb /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/.mailmap -------------------------------------------------------------------------------- /.puppet-lint.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/.puppet-lint.rc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/Rakefile -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/doc/installation.md -------------------------------------------------------------------------------- /lib/puppet/icinga2/pbkdf2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/lib/puppet/icinga2/pbkdf2.rb -------------------------------------------------------------------------------- /lib/puppet/icinga2/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/lib/puppet/icinga2/utils.rb -------------------------------------------------------------------------------- /lib/puppet/parser/functions/icinga2_config_value.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/lib/puppet/parser/functions/icinga2_config_value.rb -------------------------------------------------------------------------------- /lib/puppet/parser/functions/icinga2_ticket_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/lib/puppet/parser/functions/icinga2_ticket_id.rb -------------------------------------------------------------------------------- /manifests/checkplugin.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/checkplugin.pp -------------------------------------------------------------------------------- /manifests/conf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/conf.pp -------------------------------------------------------------------------------- /manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/config.pp -------------------------------------------------------------------------------- /manifests/config/objectdir.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/config/objectdir.pp -------------------------------------------------------------------------------- /manifests/database.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/database.pp -------------------------------------------------------------------------------- /manifests/feature.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature.pp -------------------------------------------------------------------------------- /manifests/feature/api.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/api.pp -------------------------------------------------------------------------------- /manifests/feature/checker.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/checker.pp -------------------------------------------------------------------------------- /manifests/feature/command.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/command.pp -------------------------------------------------------------------------------- /manifests/feature/debuglog.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/debuglog.pp -------------------------------------------------------------------------------- /manifests/feature/gelf.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/gelf.pp -------------------------------------------------------------------------------- /manifests/feature/graphite.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/graphite.pp -------------------------------------------------------------------------------- /manifests/feature/ido_mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/ido_mysql.pp -------------------------------------------------------------------------------- /manifests/feature/ido_pgsql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/ido_pgsql.pp -------------------------------------------------------------------------------- /manifests/feature/mainlog.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/mainlog.pp -------------------------------------------------------------------------------- /manifests/feature/notification.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/notification.pp -------------------------------------------------------------------------------- /manifests/feature/opentsdb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/opentsdb.pp -------------------------------------------------------------------------------- /manifests/feature/syslog.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/feature/syslog.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/install.pp -------------------------------------------------------------------------------- /manifests/object/apiuser.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/apiuser.pp -------------------------------------------------------------------------------- /manifests/object/apply_dependency.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/apply_dependency.pp -------------------------------------------------------------------------------- /manifests/object/apply_notification_to_host.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/apply_notification_to_host.pp -------------------------------------------------------------------------------- /manifests/object/apply_notification_to_service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/apply_notification_to_service.pp -------------------------------------------------------------------------------- /manifests/object/apply_scheduleddowntime.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/apply_scheduleddowntime.pp -------------------------------------------------------------------------------- /manifests/object/apply_service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/apply_service.pp -------------------------------------------------------------------------------- /manifests/object/checkcommand.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/checkcommand.pp -------------------------------------------------------------------------------- /manifests/object/checkresultreader.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/checkresultreader.pp -------------------------------------------------------------------------------- /manifests/object/compatlogger.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/compatlogger.pp -------------------------------------------------------------------------------- /manifests/object/dependency.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/dependency.pp -------------------------------------------------------------------------------- /manifests/object/endpoint.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/endpoint.pp -------------------------------------------------------------------------------- /manifests/object/eventcommand.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/eventcommand.pp -------------------------------------------------------------------------------- /manifests/object/gelfwriter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/gelfwriter.pp -------------------------------------------------------------------------------- /manifests/object/graphitewriter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/graphitewriter.pp -------------------------------------------------------------------------------- /manifests/object/host.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/host.pp -------------------------------------------------------------------------------- /manifests/object/hostgroup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/hostgroup.pp -------------------------------------------------------------------------------- /manifests/object/icingastatuswriter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/icingastatuswriter.pp -------------------------------------------------------------------------------- /manifests/object/idomysqlconnection.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/idomysqlconnection.pp -------------------------------------------------------------------------------- /manifests/object/idopgsqlconnection.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/idopgsqlconnection.pp -------------------------------------------------------------------------------- /manifests/object/livestatuslistener.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/livestatuslistener.pp -------------------------------------------------------------------------------- /manifests/object/notification.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/notification.pp -------------------------------------------------------------------------------- /manifests/object/notificationcommand.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/notificationcommand.pp -------------------------------------------------------------------------------- /manifests/object/opentsdbwriter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/opentsdbwriter.pp -------------------------------------------------------------------------------- /manifests/object/perfdatawriter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/perfdatawriter.pp -------------------------------------------------------------------------------- /manifests/object/scheduleddowntime.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/scheduleddowntime.pp -------------------------------------------------------------------------------- /manifests/object/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/service.pp -------------------------------------------------------------------------------- /manifests/object/servicegroup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/servicegroup.pp -------------------------------------------------------------------------------- /manifests/object/statusdatawriter.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/statusdatawriter.pp -------------------------------------------------------------------------------- /manifests/object/timeperiod.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/timeperiod.pp -------------------------------------------------------------------------------- /manifests/object/user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/user.pp -------------------------------------------------------------------------------- /manifests/object/usergroup.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/usergroup.pp -------------------------------------------------------------------------------- /manifests/object/zone.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/object/zone.pp -------------------------------------------------------------------------------- /manifests/objects.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/objects.pp -------------------------------------------------------------------------------- /manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/params.pp -------------------------------------------------------------------------------- /manifests/pki/icinga.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/pki/icinga.pp -------------------------------------------------------------------------------- /manifests/pki/puppet.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/pki/puppet.pp -------------------------------------------------------------------------------- /manifests/repo.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/repo.pp -------------------------------------------------------------------------------- /manifests/repo/apt.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/repo/apt.pp -------------------------------------------------------------------------------- /manifests/repo/yum.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/repo/yum.pp -------------------------------------------------------------------------------- /manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/manifests/service.pp -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/metadata.json -------------------------------------------------------------------------------- /spec/acceptance/10-icinga2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/acceptance/10-icinga2_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/30-icinga2_with_pgsql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/acceptance/30-icinga2_with_pgsql_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/31-icinga2_with_mysql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/acceptance/31-icinga2_with_mysql_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/nodesets/debian-7-x86_64-vagrant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/acceptance/nodesets/debian-7-x86_64-vagrant.yml -------------------------------------------------------------------------------- /spec/classes/icinga2__config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2__config_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2__install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2__install_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2__pki__icinga_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2__pki__icinga_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2__service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2__service_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_api_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_command_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_command_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_graphite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_graphite_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_ido_mysql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_ido_mysql_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_ido_pgsql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_ido_pgsql_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_mainlog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_mainlog_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_feature_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_feature_notification_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_repo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_repo_spec.rb -------------------------------------------------------------------------------- /spec/classes/icinga2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/classes/icinga2_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/apiuser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/apiuser_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/apply_dependency_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/apply_dependency_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/apply_notification_to_host_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/apply_notification_to_host_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/apply_notification_to_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/apply_notification_to_service_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/apply_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/apply_service_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/checkcommand_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/checkcommand_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/checkresultreader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/checkresultreader_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/compatlogger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/compatlogger_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/dependency_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/dependency_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/endpoint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/endpoint_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/eventcommand_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/eventcommand_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/gelfwriter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/gelfwriter_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/graphitewriter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/graphitewriter_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/host_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/host_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/hostgroup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/hostgroup_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/icingastatuswriter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/icingastatuswriter_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/idomysqlconnection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/idomysqlconnection_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/idopgsqlconnection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/idopgsqlconnection_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/livestatuslistener_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/livestatuslistener_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/notification_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/notificationcommand_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/notificationcommand_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/opentsdbwriter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/opentsdbwriter_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/perfdatawriter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/perfdatawriter_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/scheduleddowntime_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/scheduleddowntime_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/service_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/servicegroup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/servicegroup_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/statusdatawriter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/statusdatawriter_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/timeperiod_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/timeperiod_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/user_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/usergroup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/usergroup_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2__object/zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2__object/zone_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2_feature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2_feature_spec.rb -------------------------------------------------------------------------------- /spec/defines/icinga2_object_apply_scheduleddowntime_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/defines/icinga2_object_apply_scheduleddowntime_spec.rb -------------------------------------------------------------------------------- /spec/functions/icinga2_ticket_id_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/functions/icinga2_ticket_id_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /spec/variants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/spec/variants.rb -------------------------------------------------------------------------------- /templates/_header.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/_header.erb -------------------------------------------------------------------------------- /templates/feature/api.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/api.conf.erb -------------------------------------------------------------------------------- /templates/feature/checker.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/checker.conf.erb -------------------------------------------------------------------------------- /templates/feature/command.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/command.conf.erb -------------------------------------------------------------------------------- /templates/feature/debuglog.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/debuglog.conf.erb -------------------------------------------------------------------------------- /templates/feature/mainlog.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/mainlog.conf.erb -------------------------------------------------------------------------------- /templates/feature/notification.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/notification.conf.erb -------------------------------------------------------------------------------- /templates/feature/syslog.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/feature/syslog.conf.erb -------------------------------------------------------------------------------- /templates/icinga2.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/icinga2.conf.erb -------------------------------------------------------------------------------- /templates/object/apiuser.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/apiuser.conf.erb -------------------------------------------------------------------------------- /templates/object/apply_dependency.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/apply_dependency.conf.erb -------------------------------------------------------------------------------- /templates/object/apply_notification_to_host.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/apply_notification_to_host.conf.erb -------------------------------------------------------------------------------- /templates/object/apply_notification_to_service.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/apply_notification_to_service.conf.erb -------------------------------------------------------------------------------- /templates/object/apply_scheduleddowntime.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/apply_scheduleddowntime.conf.erb -------------------------------------------------------------------------------- /templates/object/apply_service.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/apply_service.conf.erb -------------------------------------------------------------------------------- /templates/object/checkcommand.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/checkcommand.conf.erb -------------------------------------------------------------------------------- /templates/object/checkresultreader.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/checkresultreader.conf.erb -------------------------------------------------------------------------------- /templates/object/compatlogger.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/compatlogger.conf.erb -------------------------------------------------------------------------------- /templates/object/dependency.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/dependency.conf.erb -------------------------------------------------------------------------------- /templates/object/endpoint.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/endpoint.conf.erb -------------------------------------------------------------------------------- /templates/object/eventcommand.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/eventcommand.conf.erb -------------------------------------------------------------------------------- /templates/object/gelfwriter.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/gelfwriter.conf.erb -------------------------------------------------------------------------------- /templates/object/graphitewriter.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/graphitewriter.conf.erb -------------------------------------------------------------------------------- /templates/object/host.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/host.conf.erb -------------------------------------------------------------------------------- /templates/object/hostgroup.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/hostgroup.conf.erb -------------------------------------------------------------------------------- /templates/object/icingastatuswriter.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/icingastatuswriter.conf.erb -------------------------------------------------------------------------------- /templates/object/idomysqlconnection.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/idomysqlconnection.conf.erb -------------------------------------------------------------------------------- /templates/object/idopgsqlconnection.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/idopgsqlconnection.conf.erb -------------------------------------------------------------------------------- /templates/object/livestatuslistener.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/livestatuslistener.conf.erb -------------------------------------------------------------------------------- /templates/object/notification.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/notification.conf.erb -------------------------------------------------------------------------------- /templates/object/notificationcommand.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/notificationcommand.conf.erb -------------------------------------------------------------------------------- /templates/object/opentsdbwriter.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/opentsdbwriter.conf.erb -------------------------------------------------------------------------------- /templates/object/perfdatawriter.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/perfdatawriter.conf.erb -------------------------------------------------------------------------------- /templates/object/scheduleddowntime.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/scheduleddowntime.conf.erb -------------------------------------------------------------------------------- /templates/object/service.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/service.conf.erb -------------------------------------------------------------------------------- /templates/object/servicegroup.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/servicegroup.conf.erb -------------------------------------------------------------------------------- /templates/object/statusdatawriter.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/statusdatawriter.conf.erb -------------------------------------------------------------------------------- /templates/object/timeperiod.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/timeperiod.conf.erb -------------------------------------------------------------------------------- /templates/object/user.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/user.conf.erb -------------------------------------------------------------------------------- /templates/object/usergroup.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/usergroup.conf.erb -------------------------------------------------------------------------------- /templates/object/zone.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/object/zone.conf.erb -------------------------------------------------------------------------------- /templates/zones.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Icinga/puppet-icinga2-legacy/HEAD/templates/zones.conf.erb --------------------------------------------------------------------------------