Code Monkey home page Code Monkey logo

icinga / icinga-vagrant Goto Github PK

View Code? Open in Web Editor NEW
249.0 30.0 83.0 29.82 MB

Vagrant boxes for Icinga 2, Icinga Web 2, modules, themes and integrations (Graphite, InfluxDB, Elastic, Graylog, etc.)

Home Page: https://icinga.com/products/demo/

License: GNU General Public License v2.0

Ruby 38.29% Puppet 15.97% Shell 0.64% HTML 8.57% Pascal 0.26% Makefile 0.01% Python 0.06% Batchfile 0.01% CSS 0.26% JavaScript 0.14% Perl 35.75% Dockerfile 0.03%
icinga vagrant-boxes demo graphite influxdb grafana graylog elastic

icinga-vagrant's Introduction

Icinga Vagrant Boxes

Table of Contents

  1. About
  2. License
  3. Support
  4. Requirements
  5. Installation
  6. Configuration
  7. FAQ
  8. Authors
  9. Contributing

About

The Icinga Vagrant boxes allow you to run Icinga 2, Icinga Web 2 and integrations (Graphite, InfluxDB, Grafana, Elastic Stack, Graylog) in various scenarios.

A simple vagrant up fully installs these VMs and you are ready to explore the Icinga ecosystem and possible integrations.

You can use these boxes for your own local demos, or to learn how to use Icinga in your environment. The Puppet provisioner uses official upstream modules including puppet-icinga2 and puppet-icingaweb2.

Overview

Below are some sample screenshots. Keep in mind that software is under steady development, so screenshots and features may change.

Visualization

Icinga Web 2 Reporting

Icinga Web 2 Maps

Icinga Web 2 Business Process

Metrics

Icinga 2 Grafana with Graphite

Icinga Web 2 Detail View with Graphite

Icinga Web 2 Detail View with Grafana & Influxdb

Logs and Events

Elastic Stack and Icingabeat

Graylog

Icinga Web 2 Elasticsearch

Certificates

Certificate Monitoring

Dashboards and Themes

Dashing

Icinga Web 2 Theme Unicorn

License

Box specific code is licensed under the terms of the GNU General Public License Version 2, you will find a copy of this license in the LICENSE file included in the source package.

Included Puppet modules in the .puppet/modules directory provide their own license details.

Support

These boxes are built for demos and development tests only. Team members and partners may use these for their Icinga Camp presentations or any other event too.

Join the Icinga community channels for questions.

Note

Boxes can run snapshot builds and unstable code to test the latest and the greatest.

You can also use them to test Icinga packages prior to the next release.

In case you've found a problem or want to submit a patch, please open an issue on GitHub and/or create a PR.

Requirements

One of these virtualization providers:

Each Vagrant box setup requires at least 2 Cores and 2 GB RAM. The required resources are automatically configured during the vagrant up run.

Note

OpenStack VMs are provisioned remotely in your cloud provider. Please continue here for a full documentation.

Optional:

Linux

VirtualBox

Example on Fedora (needs RPMFusion repository for VirtualBox):

sudo dnf install vagrant
sudo dnf install virtualbox
vagrant plugin install virtualbox

Fedora uses libvirt by default. More details on VirtualBox can be found here.

Example on Ubuntu:

$ sudo apt-get install vagrant
$ sudo apt-get install virtualbox

libvirt

libvirt uses NFS for shared folders in the VMs, nfs_udp: false is already set.

nfs3 needs to be enabled in your local firewall to allow connections.

# firewall-cmd --permanent --add-service=nfs3
# firewall-cmd --reload

macOS

macOS runs best with the Parallels provider, VirtualBox works as well.

Windows

Windows requires VirtualBox as provider. You'll also need the Git package which includes SSH.

Install the Git package and set autocrlf to false.

Windows Git CRLF

You can also set the options on the command line afterwards:

C:\Users\michi> git.exe config --global core.autocrlf false

Set the Windows command line as default:

Windows Git Command Line

Note

If vagrant up hangs with Vagrant 2.0.0 on Windows 7, you might need to upgrade your Powershell version. See this note for details.

Providers

Choose one of the providers below. VirtualBox can be used nearly everwhere. If you have a Parallels Pro license on macOS, or prefer to use libvirt, that's possible too.

Virtualbox

If Virtualbox is installed, this will be enabled by default.

The Virtualbox provider uses the bento base box.

Parallels

You'll need to install the vagrant-parallels plugin first:

$ vagrant plugin install vagrant-parallels

The Parallels provider uses the bento base box.

VMware

Both VMware Workstation and the Vagrant plugin require their own license.

The Vagrant plugin installation is described here.

The VMware provider uses the bento base box.

Libvirt

You should have qemu and libvirt installed if you plan to run Vagrant on your local system. Then install the vagrant-libvirt` plugin:

$ vagrant plugin install vagrant-libvirt

The libvirt provider uses the official CentOS base boxes.

Installation

Linux

$ git clone https://github.com/Icinga/icinga-vagrant && cd icinga-vagrant

Change into the directory of the scenario and start the box(es).

$ cd standalone
$ vagrant up

Proceed here for an overview about all available boxes.

Windows

Clone this repository:

C:\Users\michi\Documents> git.exe clone https://github.com/Icinga/icinga-vagrant

Windows Git Clone

Change into the directory of the scenario and start the box(es).

Windows Vagrant Up

Proceed here for an overview about all available boxes.

Boxes

Each setup comes with the following basic tools installed:

Additionally, specific integrations, tools and modules are prepared for each scenario.

Standalone

Run Vagrant:

$ cd standalone && vagrant up

Application Interfaces

Application Url Credentials
Icinga Web 2 http://192.168.33.5/icingaweb2 icingaadmin/icinga
Icinga 2 API https://192.168.33.5:5665/v1 root/icinga
Graphite Web http://192.168.33.5:8003 -
Grafana http://192.168.33.5:8004 admin/admin
Dashing http://192.168.33.5:8005 -

Note: In case Dashing is not running, restart it manually:

$ vagrant ssh -c "sudo systemctl start dashing-icinga2"

Distributed

  • 2 VMs as Icinga 2 Master/Satellite scenario

Run Vagrant:

$ cd distributed && vagrant up

Application Interfaces

Application Url Credentials
Icinga Web 2 http://192.168.33.101/icingaweb2 icingaadmin/icinga
Icinga Web 2 http://192.168.33.102/icingaweb2 icingaadmin/icinga
Icinga 2 API https://192.168.33.101:5665/v1 root/icinga
Icinga 2 API https://192.168.33.102:5665/v1 root/icinga

InfluxDB

Run Vagrant:

$ cd influxdb && vagrant up

Application Interfaces

Application Url Credentials
Icinga Web 2 http://192.168.33.8/icingaweb2 icingaadmin/icinga
Icinga 2 API https://192.168.33.8:5665/v1 root/icinga
Grafana http://192.168.33.8:8004 admin/admin

Elastic Stack

Run Vagrant:

$ cd elastic && vagrant up

Application Interfaces

Application Url Credentials
Icinga Web 2 http://192.168.33.7/icingaweb2 icingaadmin/icinga
Icinga 2 API https://192.168.33.7:5665/v1 root/icinga
Kibana http://192.168.33.7:5602 icinga/icinga
Elasticsearch/Nginx http://192.168.33.7:9202 icinga/icinga
Kibana (TLS) https://192.168.33.7:5603 icinga/icinga
Elasticsearch/Nginx (TLS) https://192.168.33.7:9203 icinga/icinga

Graylog

Run Vagrant:

$ cd graylog && vagrant up

Application Interfaces

Application Url Credentials
Icinga Web 2 http://192.168.33.6/icingaweb2 icingaadmin/icinga
Icinga 2 API https://192.168.33.6:5665/v1 root/icinga
Graylog http://192.168.33.6:9000 admin/admin

Configuration

The default configuration for specific scenarios is stored in the Vagrantfile.nodes file. In case you want to modify its content to e.g. add synced folders or change the host-only IP address you can copy its content into the Vagrantfile.local file and modify it there.

Vagrantfile.local is not tracked by Git.

If you change the base box, keep in mind that provisioning only has been tested and developed with CentOS 7, no other distributions are currently supported.

Example for additional synced folders:

$ vim standalone/Vagrantfile.local

nodes = {
  'icinga2' => {
    :box_virtualbox => 'bento/centos-7.4',
    :box_parallels  => 'bento/centos-7.4',
    :box_hyperv     => 'bento/centos-7.4',
    :box_libvirt    => 'centos/7',
    :net            => 'demo.local',
    :hostonly       => '192.168.33.5',
    :memory         => '2048',
    :cpus           => '2',
    :mac            => '020027000500',
    :forwarded      => {
      '443'  => '8443',
      '80'   => '8082',
      '22'   => '2082',
      '8003' => '8082'
    },
    :synced_folders => {
      '../../icingaweb2-module-graphite' => '/usr/share/icingaweb2-modules/graphite'
    }
  }
}

If the vagrant-hostmanager plugin is installed an entry in /etc/hosts will be created to provide access by name.

Configuration: Icinga Package Repository

This requires you to edit the Hiera configuration tracked by Git. The setting below allows to control whether the Icinga release or snapshot package repositories are enabled by default.

That way you can easily either test the development snapshots or have stable packages for demos.

vim .puppet/hieradata/common.yaml

icinga::repo::type:                     "snapshot" # you can use 'release' too
#icinga::repo::type:                     "release"

FAQ

Vagrant Commands

Up

Start all VMs:

$ vagrant up

Depending on the provider you have chosen above, you might want to set it explicitely:

$ vagrant up --provider=virtualbox

SSH

SSH into the box as local vagrant user (Tip: Use sudo -i to become root):

$ vagrant ssh

Note

Multi-VM boxes require the hostname for vagrant ssh like so: vagrant ssh icinga2b. That works in a similar fashion for other sub commands.

Halt

Stop all VMs:

$ vagrant halt

Provision

Update packages/reset configuration for all VMs:

$ vagrant provision

Destroy

Destroy the VM (add -f to avoid the safety question)

$ vagrant destroy

Documentation Reference

Documentation for software used inside these boxes.

Project URL
Icinga 2 https://www.icinga.com/docs/icinga2/latest/doc/01-about/
Icinga Web 2 https://www.icinga.com/docs/icingaweb2/latest/doc/01-About/
Director https://www.icinga.com/docs/director/latest/doc/01-Introduction/
Graphite https://graphite.readthedocs.io
InfluxDB https://docs.influxdata.com/influxdb/
Grafana https://docs.grafana.org
Elastic https://www.elastic.co/guide/
Graylog http://docs.graylog.org

Vagrant update

On local config change (git pull for this repository).

$ pwd
$ git pull
$ git log
$ vagrant provision

Behind a proxy

If you are working behind a proxy, you can use the proxyconf plugin.

Install the plugin:

$ vagrant plugin install vagrant-proxyconf

Export the proxy variables into your environment:

$ export VAGRANT_HTTP_PROXY=http://proxy:8080
$ export VAGRANT_HTTPS_PROXY=http://proxy:8080

Vagrant exports the proxy settings into the VM and provisioning will then work.

Authors

Thanks to all contributors! :)

  • lippserd for the initial Vagrant box idea from Icinga Web 2.
  • gunnarbeutner for the base setup with Icinga 2.
  • NETWAYS for sponsoring the initial Icinga 2 Cluster setup.
  • bernd for the Graylog box.
  • nbuchwitz for fixes and workarounds on broken packages.
  • kornm for the Vagrant HTTP proxy FAQ.
  • ruzickap for the libvirt provider.
  • mightydok for fixes on Virtualbox provider.
  • joonas for Puppet provisioner fixes.
  • tomdc for his contributions to Icinga 1.x/Jasper.
  • martbhell for the OpenStack provider.

Contributing

Overview

Each box uses a generic Vagrantfile to set the required resources for initial VM startup. The Vagrantfile includes the Vagrantfile.nodes file which defines VM specific settings. In addition to that, tools/vagrant_helper.rb loads all pre-defined functions for provider and provisioner instantiation. Furthermore it configures vagrant-hostmanager if the plugin is installed.

The generic shell_provisioner.sh scripts ensure that all VM requirements are fulfilled and also takes care about installing Puppet which will be used as provisioner in the next step.

For OpenStack, there's a special SSH IP address override in place which provisions Puppet/Hiera with an auto-generated config file. This is needed for all integrations to work properly.

The main entry point is the Puppet provisioner which calls the default.pp environment resource. Anything compiled into this catalog will be installed into the VM.

Base Boxes

Provider Base Box
VirtualBox Bento
Parallels Bento
libvirt libvirt
OpenStack NWS CentOS 7

Pull updates.

vagrant box update

Tools

InfluxDB

Current version via HTTP API:

curl -sl -I 192.168.33.8:8086/ping

Show tags on a database:

# influx

use icinga2
show tag keys on icinga2

Puppet Module Overview

The following Puppet modules are used for provisioning the boxes, installing packages and configuring everything for your needs. In addition to these official modules, specific Puppet profiles have been created to avoid code duplication.

The modules are pulled into this repository as git subtree. The main reason for not using submodules or the official way of installing Puppet modules is that the upstream source may be gone or unreachable. That must not happen with this Vagrant environment.

General:

Name Puppet Version Path Url
puppetlabs-stdlib >= 2.7.20 .puppet/modules/stdlib https://github.com/puppetlabs/puppetlabs-stdlib.git
puppetlabs-concat >= 4.7.0 .puppet/modules/concat https://github.com/puppetlabs/puppetlabs-concat.git
puppetlabs-apache >= 4.7.0 .puppet/modules/apache https://github.com/puppetlabs/puppetlabs-apache.git
puppetlabs-mysql >= 4.7.0 .puppet/modules/mysql https://github.com/puppetlabs/puppetlabs-mysql.git
puppetlabs-vcsrepo >= 4.7.0 .puppet/modules/vcsrepo https://github.com/puppetlabs/puppetlabs-vcsrepo.git
puppet-module-epel >= 3.0.0 .puppet/modules/epel https://github.com/stahnma/puppet-module-epel.git
puppet-php >= 4.7.0 < 5.0.0 .puppet/modules/php https://github.com/voxpupuli/puppet-php.git
puppet-selinux >= 4.7.1 .puppet/modules/selinux https://github.com/voxpupuli/puppet-selinux.git
puppetlabs-java >= 4.7.0 .puppet/modules/java https://github.com/puppetlabs/puppetlabs-java.git
puppet-yum >= 4.6.1 .puppet/modules/yum https://github.com/voxpupuli/puppet-yum.git
puppet-archive >= 4.7.1 .puppet/modules/archive https://github.com/voxpupuli/puppet-archive.git
puppet-wget >= 4.7.0 .puppet/modules/wget https://github.com/rehanone/puppet-wget.git
puppet-vim >=4.0.0 < 5.0.0 .puppet/modules/vim https://github.com/saz/puppet-vim.git
puppet-datacat Type for ES .puppet/modules/datacat https://github.com/richardc/puppet-datacat.git
puppet-inifile >= 4.7.0 .puppet/modules/inifile https://github.com/puppetlabs/puppetlabs-inifile.git
puppet-timezone >= 4.0.0 .puppet/modules/timezone https://github.com/saz/puppet-timezone.git
puppet-snmp >= 5.5.8 < 7.0.0 .puppet/modules/snmp https://github.com/voxpupuli/puppet-snmp.git
puppet-systemd >= 4.10 < 7.0.0 .puppet/modules/systemd https://github.com/camptocamp/puppet-systemd.git

Specific projects:

Name Puppet Version Path Url
puppet-elastic-stack >= 4.6.1 .puppet/modules/elastic_stack https://github.com/elastic/puppet-elastic-stack.git
puppet-icinga2 4.x .puppet/modules/icinga2 https://github.com/Icinga/puppet-icinga2.git (Patch for Elasticsearch)
puppet-icingaweb2 >= 4.7.0 .puppet/modules/icingaweb2 https://github.com/Icinga/puppet-icingaweb2.git
puppet-graylog 4.x .puppet/modules/graylog https://github.com/Graylog2/puppet-graylog.git
puppet-elasticsearch >= 4.5.0 .puppet/modules/elasticsearch https://github.com/elasticsearch/puppet-elasticsearch.git
puppet-nginx >= 4.7.0 .puppet/modules/nginx https://github.com/voxpupuli/puppet-nginx.git
puppet-logstash >= 4.6.1 .puppet/modules/logstash https://github.com/elastic/puppet-logstash.git
puppet-kibana >= 4.5.0 .puppet/modules/kibana https://github.com/elastic/puppet-kibana.git
puppet-filebeat >= 4.0.0 .puppet/modules/filebeat https://github.com/pcfens/puppet-filebeat.git
puppet-mongodb >= 5.5.8 < 7.0.0 .puppet/modules/mongodb https://github.com/voxpupuli/puppet-mongodb.git
golja-influxdb >= 3.0.0 < 5.0.0 .puppet/modules/influxdb https://github.com/n1tr0g/golja-influxdb.git
puppet-graphite >= 3.0.0 < 5.0.0 .puppet/modules/graphite https://github.com/echocat/puppet-graphite.git
puppet-grafana >= 4.7.1 .puppet/modules/grafana https://github.com/voxpupuli/puppet-grafana.git

Puppet Module Git Subtree

Notes for developers only.

Add subtree:

$ git subtree add --prefix .puppet/modules/vim https://github.com/saz/puppet-vim master --squash

Update subtree:

$ git subtree pull --prefix .puppet/modules/postgresql https://github.com/puppetlabs/puppetlabs-postgresql.git master --squash

icinga-vagrant's People

Contributors

al2klimov avatar bastelfreak avatar bernd avatar dependabot[bot] avatar gunnarbeutner avatar hggh avatar kesselb avatar kornm avatar lazyfrosch avatar lippserd avatar martbhell avatar mightydok avatar multi-io avatar obihoernchen avatar ruzickap avatar steaksauce- avatar theflyingcorpse avatar tomdc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

icinga-vagrant's Issues

Could not set groups on user[icinga]

When trying to run a vagrant up of the icinga2x machine the provision process returns an error:

=> icinga2: Notice: /Stage[main]/Main/Exec[enable-icinga2-api]/returns: executed successfully
==> icinga2: Error: Could not set groups on user[icinga]: Execution of '/sbin/usermod -G icingacmd,icingaweb2 icinga' returned 6: usermod: group 'icingaweb2' does not exist
==> icinga2: Error: /Stage[main]/Main/User[icinga]/groups: change from icingacmd to icingacmd,icingaweb2 failed: Could not set groups on user[icinga]: Execution of '/sbin/usermod -G icingacmd,icingaweb2 icinga' returned 6: usermod: group 'icingaweb2' does not exist
==> icinga2: Notice: /Stage[main]/Main/Icinga2::Feature[perfdata]/Exec[icinga2-feature-perfdata]/returns: executed successfully
==> icinga2: Notice: /Stage[main]/Main/File[/etc/icinga2/zones.conf]: Dependency User[icinga] has failures: true
==> icinga2: Warning: /Stage[main]/Main/File[/etc/icinga2/zones.conf]: Skipping because of failed dependencies
==> icinga2: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/hosts.conf]: Dependency User[icinga] has failures: true
==> icinga2: Warning: /Stage[main]/Main/File[/etc/icinga2/conf.d/hosts.conf]: Skipping because of failed dependencies
==> icinga2: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/additional_services.conf]: Dependency User[icinga] has failures: true
==> icinga2: Warning: /Stage[main]/Main/File[/etc/icinga2/conf.d/additional_services.conf]: Skipping because of failed dependencies

I am on a Centos 7 Server with VirtualBox 5.1 and Vagrant 1.9.2 behind a proxy (which is set in the Vagrantfile)

/sbin/ifup: configuration for eth1 not found

Steps to reproduce (Mac OS Sierra 10.12):

  • git clone [email protected]:Icinga/icinga-vagrant.git
  • cd icinga-vagrant/icinga2x
  • vagrant up

vagrant up
Bringing machine 'icinga2' up with 'virtualbox' provider...
==> icinga2: Box 'centos-71-x64-vbox' could not be found. Attempting to find and install...
    icinga2: Box Provider: virtualbox
    icinga2: Box Version: >= 0
==> icinga2: Box file was not detected as metadata. Adding it directly...
==> icinga2: Adding box 'centos-71-x64-vbox' (v0) for provider: virtualbox
    icinga2: Downloading: http://boxes.icinga.com/centos-71-x64-vbox.box
==> icinga2: Successfully added box 'centos-71-x64-vbox' (v0) for 'virtualbox'!
==> icinga2: Importing base box 'centos-71-x64-vbox'...
==> icinga2: Matching MAC address for NAT networking...
==> icinga2: Setting the name of the VM: icinga2x_icinga2_1484818343423_81986
==> icinga2: Fixed port collision for 22 => 2222. Now on port 2200.
==> icinga2: Clearing any previously set network interfaces...
==> icinga2: Preparing network interfaces based on configuration...
    icinga2: Adapter 1: nat
    icinga2: Adapter 2: hostonly
==> icinga2: Forwarding ports...
    icinga2: 22 (guest) => 2082 (host) (adapter 1)
    icinga2: 80 (guest) => 8082 (host) (adapter 1)
    icinga2: 8003 (guest) => 8083 (host) (adapter 1)
    icinga2: 22 (guest) => 2200 (host) (adapter 1)
==> icinga2: Running 'pre-boot' VM customizations...
==> icinga2: Booting VM...
==> icinga2: Waiting for machine to boot. This may take a few minutes...
    icinga2: SSH address: 127.0.0.1:2200
    icinga2: SSH username: vagrant
    icinga2: SSH auth method: private key
==> icinga2: Machine booted and ready!
==> icinga2: Checking for guest additions in VM...
    icinga2: The guest additions on this VM do not match the installed version of
    icinga2: VirtualBox! In most cases this is fine, but in rare cases it can
    icinga2: prevent things such as shared folders from working properly. If you see
    icinga2: shared folder errors, please make sure the guest additions within the
    icinga2: virtual machine match the version of VirtualBox you have installed on
    icinga2: your host and reload your VM.
    icinga2:
    icinga2: Guest Additions Version: 4.3.28
    icinga2: VirtualBox Version: 5.1
==> icinga2: [vagrant-hostsupdater] Checking for host entries
==> icinga2: [vagrant-hostsupdater] Writing the following entries to (/etc/hosts)
==> icinga2: [vagrant-hostsupdater]   192.168.33.5  icinga2  # VAGRANT: 2b782b5c1d5936c0f55d22b926edb70f (icinga2) / fcaaed22-0c70-4340-b34e-b0176b75dc01
==> icinga2: [vagrant-hostsupdater] This operation requires administrative access. You may skip it by manually adding equivalent entries to the hosts file.
Password:
==> icinga2: Setting hostname...
==> icinga2: Configuring and enabling network interfaces...
==> icinga2: Mounting shared folders...
    icinga2: /vagrant => /Users/steveedson/repos/servers/icinga-vagrant/icinga2x
    icinga2: /tmp/vagrant-puppet/modules-26a5f480deed6fbeb151d8a7b1d2ab8b => /Users/steveedson/repos/servers/icinga-vagrant/modules
    icinga2: /tmp/vagrant-puppet/manifests-a11d1078b1b1f2e3bdea27312f6ba513 => /Users/steveedson/repos/servers/icinga-vagrant/icinga2x/manifests
==> icinga2: Running provisioner: shell...
    icinga2: Running: /var/folders/fv/zq88lb_j7zg2v0vhcnh31lpxvgyx12/T/vagrant-shell20170119-25794-1mifuht.sh
==> icinga2: Running provisioner: shell...
    icinga2: Running: inline script
==> icinga2: /sbin/ifup: configuration for eth1 not found.
==> icinga2: Usage: ifup 
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.

/etc/vimrc has Windows line endings "^M"

I am currently using the icinga2x/ box and ran into this small problem.

[root@icinga2 ~]# vim /etc/yum.conf
Error detected while processing /etc/vimrc:
line    3:
E492: Not an editor command: ^M
line    4:
E492: Not an editor command: ^M
line    5:
E488: Trailing characters: nocompatible^M
line    6:
E492: Not an editor command: ^M
line    7:
E492: Not an editor command: ^M
line    8:
E492: Not an editor command: ^M
line    9:
E492: Not an editor command: ^M
line   10:
E15: Invalid expression: has("syntax")^M
line   58:
E171: Missing :endif
Press ENTER or type command to continue

Deleting the line endings fixed the problem

I am on the current master branch

.../icinga-vagrant (master)
$ git status
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean

The file does not seem to be configured during the puppet run or stem from the \icinga2x\files folder, so it it probably has to be changed in the http://boxes.icinga.com/centos-71-x64-vbox.box itself.

Windows 8.1 Host, VirtualBox Provider

Use Puppet 4 as provisioner

Module Analysis

General:

Name Puppet Version Path Url
puppetlabs-stdlib >= 2.7.20 modules/stdlib https://github.com/puppetlabs/puppetlabs-stdlib.git
puppetlabs-concat >= 4.7.0 modules/concat https://github.com/puppetlabs/puppetlabs-concat.git
puppetlabs-apache >= 4.7.0 modules/apache https://github.com/puppetlabs/puppetlabs-apache.git
puppetlabs-mysql >= 4.7.0 modules/mysql https://github.com/puppetlabs/puppetlabs-mysql.git
puppetlabs-postgresql >= 4.7.0 modules/postgresql https://github.com/puppetlabs/puppetlabs-postgresql.git
puppetlabs-vcsrepo >= 4.7.0 modules/vcsrepo https://github.com/puppetlabs/puppetlabs-vcsrepo.git
puppet-module-epel >= 3.0.0 modules/epel https://github.com/stahnma/puppet-module-epel.git
puppet-php >= 4.7.0<5.0.0 modules/php https://github.com/voxpupuli/puppet-php.git
puppet-selinux >= 4.7.1 modules/selinux https://github.com/voxpupuli/puppet-selinux.git
puppetlabs-java >= 4.7.0 modules/java https://github.com/puppetlabs/puppetlabs-java.git
puppet-yum >= 4.6.1 modules/yum https://github.com/voxpupuli/puppet-yum
puppet-archive >= 4.7.1 modules/archive https://github.com/voxpupuli/puppet-archive.git
puppet-vim >=4.0.0<5.0.0 modules/vim https://github.com/saz/puppet-vim.git
puppet-datacat Type for ES modules/datacat https://github.com/richardc/puppet-datacat.git
puppet-inifile >= 4.7.0 modules/inifile https://github.com/puppetlabs/puppetlabs-inifile.git

Specific projects:

Name Puppet Version Path Url
puppet-elastic-stack >= 4.6.1 modules/elastic_stack repo management in v6: https://github.com/elastic/puppet-elastic-stack
puppet-icinga2 4.x modules/icinga2 https://github.com/icinga/puppet-icinga2.git
puppet-icingaweb2 >= 4.7.0 modules/icingaweb2 https://github.com/icinga/puppet-icingaweb2.git
puppet-graylog ??? modules/graylog [ ] NEEDS v4 SUPPORT https://github.com/Graylog2/puppet-graylog.git
puppet-elasticsearch >= 4.5.0 modules/elasticsearch https://github.com/elasticsearch/puppet-elasticsearch.git
puppet-nginx >= 4.7.0 modules/nginx https://github.com/voxpupuli/puppet-nginx.git
puppet-logstash >= 4.6.1 modules/logstash https://github.com/elastic/puppet-logstash.git
puppet-kibana >= 4.5.0 modules/kibana https://github.com/elastic/puppet-kibana.git
puppet-filebeat >= 4.0.0 modules/filebeat https://github.com/pcfens/puppet-filebeat.git
puppetlabs-mongodb >= 4.7.1 modules/mongodb https://github.com/puppetlabs/puppetlabs-mongodb.git
golja-influxdb >= 3.0.0<5.0.0 modules/influxdb https://github.com/n1tr0g/golja-influxdb.git
puppet-graphite >= 3.0.0<5.0.0 modules/graphite [ ] NEEDS TESTS ON UPDATE https://github.com/echocat/puppet-graphite.git
puppet-grafana >= 4.7.1 modules/grafana https://github.com/voxpupuli/puppet-grafana

Tasks

Provisioner Pre Script

Inspired by https://github.com/roman-mueller/puppet4-sandbox/blob/master/puppetupgrade.sh

if [ ! -e /etc/yum.repos.d/puppetlabs-pc1.repo ]; then
    echo "Installing Puppet 4 release..."
    yum install -y https://yum.puppetlabs.com/puppetlabs-release-pc1-el-7.noarch.rpm
fi

if ! rpm -q "puppet-agent" &>/dev/null; then
    echo "Installing puppet..."
    yum install -y puppet-agent
fi
[root@icinga2-puppet4 ~]# puppet -V
4.10.9

Modules

Each module requires an update to the latest stable/git master.

Functional tests

  • puppet-yum
  • puppet-elastic-stack
  • puppet-elasticsearch (bump to v6 directly?)
  • puppet-kibana
  • golja-influxdb
  • puppet-graphite
  • puppet-grafana

Unclear:

Boxes

  • icinga2x (graphite, grafana,dashing,map)
  • icinga2x-elastic (elasticsearch, kibana, httpproxy)
  • icinga2x-influxdb (influxdb, grafana)
  • icinga2x-graylog (graylog)

Cleanup Puppet code

  • NagVis triggers on provision
  • unused features which slow down the provisioning process
  • anything else

Integrate Icinga Web 2 modules

  • PNP (requires #25)
  • Graphite (only if the backend is available, requires #26)
  • genericTTS -> refactor feeder in #21 (always)
  • Director (always)
  • NagVis (if we find a better way to install it)
  • Business Process (always)
  • Cube (always)
  • Elasticsearch (if the backend is available)

icinga2x: provision fails with broken nodejs/libhttp_parser (Update to CentOS 7.4 required)

Package is broken in EPEL:

https://bugs.centos.org/view.php?id=13669&nbn=1
https://bugzilla.redhat.com/show_bug.cgi?id=1481008

http-parser was added to RHEL 7.4, EPEL removed it, but CentOS 7.4 is not yet released.

==> icinga2: Error: Execution of '/bin/yum -d 0 -e 0 -y install nodejs' returned 1: Error: Package: 1:nodejs-6.11.1-1.el7.x86_64 (epel)
==> icinga2:            Requires: libhttp_parser.so.2()(64bit)
==> icinga2: Error: Package: 1:nodejs-6.11.1-1.el7.x86_64 (epel)
==> icinga2:            Requires: http-parser >= 2.7.0
==> icinga2:  You could try using --skip-broken to work around the problem
==> icinga2:  You could try running: rpm -Va --nofiles --nodigest
==> icinga2: Error: /Stage[main]/Main/Package[nodejs]/ensure: change from absent to present failed: Execution of '/bin/yum -d 0 -e 0 -y install nodejs' returned 1: Error: Package: 1:nodejs-6.11.1-1.el7.x86_64 (epel)
==> icinga2:            Requires: libhttp_parser.so.2()(64bit)
==> icinga2: Error: Package: 1:nodejs-6.11.1-1.el7.x86_64 (epel)
==> icinga2:            Requires: http-parser >= 2.7.0
==> icinga2:  You could try using --skip-broken to work around the problem
==> icinga2:  You could try running: rpm -Va --nofiles --nodigest

icinga2x: php-mbstring missing

Missing php-mbstring module in manifest.pp

To reproduce the error go to Documentation -> Module documentations -> Icinga2 -> Getting Started

Fatal error: Call to undefined function mb_strlen() in /usr/share/icingaweb2/library/vendor/Parsedown/Parsedown.php on line 144

To fix this add the following line to manifests/default.pp:

php::module { [ 'mbstring' ]: }

Beta1: Icinga Web 2 path problems

I installed and executed icinga-vagrant beta 1 on Mac OS X Mavericks (latest) with the following command from the blog (added cd icinga-vagrant to make it work):
$ git clone git://git.icinga.org/icinga-vagrant.git && cd icinga-vagrant/icinga2x-cluster && ./init.sh && vagrant up

When opening either http://localhost:8081/icingaweb/ I am redirected to http://localhost:8081/icingaweb/icingaweb/authentication/login?redirect=dashboard. That results in a Page not found message. (Same for port 8080.)

Everything works fine by changing the URI to http://localhost:8081/icingaweb/authentication/login?redirect=dashboard.

Package python-carbon not installed

In my Vagrant Icinga2x/ box Graphite was not working at all. Checking cat /var/log/icinga2/icinga2.log | grep critical returned the following

[2017-04-26 14:39:52 +0200] critical/Socket: Invalid socket: Connection refused
[2017-04-26 14:39:52 +0200] critical/GraphiteWriter: Can't connect to Graphite on host '127.0.0.1' port '2003'.

According to this thread installing the carbon-cache package solves the issue. On CentOS this is achieved by running yum install python-carbon

Use hiera as configuration provider

  • central hieradata/ store, mounted as synced folder into /hieradata in each box
  • common.yaml contains settings for IP addresses and software versions
  • config doesn't specify the IPs, that's done via Vagrant and hostonly interface eth1
  • hostname fixes for Vagrant, setting the proper fqdn as well as node_name

refs #123

Unable to mount Shared folder

vagrant up comes with the follwoing error (Vgrant 1.9.3, Virtualbox 1.5.20 running on Ubuntu 16.04)

Vagrant was unable to mount VirtualBox shared folders. This is usually
because the filesystem "vboxsf" is not available. This filesystem is
made available via the VirtualBox Guest Additions and kernel module.
Please verify that these guest additions are properly installed in the
guest. This is not a bug in Vagrant and is usually caused by a faulty
Vagrant box. For context, the command attempted was:

mount -t vboxsf -o uid=1000,gid=1000 vagrant /vagrant

The error output from the command was:

mount: wrong fs type, bad option, bad superblock on vagrant,
       missing codepage or helper program, or other error

       In some cases useful info is found in syslog - try
       dmesg | tail or so.

Error comes from incorrect path in symlink for /sbin/mount.vboxsf .

[root@icinga2 ~]# ls -lh /sbin/mount.vboxsf 
lrwxrwxrwx. 1 root root 49 26. Apr 19:07 /sbin/mount.vboxsf -> /opt/VBoxGuestAdditions-5.1.20/other/mount.vboxsf

I fixed this with
[root@icinga2 ~]# cd /opt/VBoxGuestAdditions-5.1.20/sudo ln -sf /opt/VBoxGuestAdditions-5.1.20/lib/VBoxGuestAdditions/mount.vboxsf /sbin/mount.vboxsf

After logout a simple 'vagrant reload' runs the full provisioning.

Trying that in the "icinga2x" box, but seems also present in the other boxes using virtualbox

Use centos7 VirtualBox image from Atlas

This requires us to

  • disable SELinux
  • install Puppet
  • install vbguest Vagrant plugin

Ensure that these changes work with Parallels and libvirt as provider.

Edit: There are certain problems with the official centos/7 box as it does not provide the VirtualBox guest tools. The vagrant-vbguest plugin would solve this somehow, but adds a dependency for the end user to install. Furthermore there are known bugs with VirtualBox guest additionals (5.1.20 is broken atm). I cannot support such scenarios and therefore need a box with has the guest additions pre-installed.

Final solution: Use the boxes provided by bento and clearly note that in the docs.

Provide generic configuration examples

  • Ensure that all plugins are installed where needed (e.g. check_mysql_health)
  • Use puppet-icinga2 to generate such config, this includes apply-for magic
  • Integrate business process objects and those config items
  • Integrate custom attributes for cube module
  • Add random checks for dashboards (Dashing, Icinga Web 2)
  • Add load checks for metric realtime checks
  • Notifications?

Cluster: Provide scenarios

  • master & satellite
  • ha master & satellite
  • ha master & clients
  • ha master, satellite & clients

Roles:

  • a master node has local IDO DB and Icinga 2 & Icinga Web 2 including modules
  • a satellite only gets Icinga 2, config sync from the top
  • a client is called via command endpoint and gets its checkcommands/templates through a global zone

The Icinga Director module should come pre-configured for such a setup, including the required zone additions on all nodes. This is optional for resolving this issue as it involves an additional provisioning step.

Vagrantfile(s): typo for CPU option

I noticed my vagrant box has only one CPU configured.
The number of CPUs is set as :cpu but the configuration is looking up options[:cpus]

Excerpt from icinga2x Vagrantfile

[...]
nodes = { 'icinga2' => {
          :box_virtualbox => 'bento/centos-7.3',
          :box_parallels  => 'parallels/centos-7.3',
          :box_libvirt 	=> 'centos/7',
          :net	=> 'demo.local',
          :hostonly   => '192.168.33.5',
          :memory	=> '2048',
          :cpu	=> '2',
          :mac	=> '020027000500',
          :fowarded	=> {
            '443'  => '8443',
            '80'   => '8082',
            '22'   => '2082',
            '8003' => '8082'
          }
        }
}
[...]
      # provider: parallels
      node_config.vm.provider :parallels do |p, override|
[...]
        p.memory = options[:memory] if options[:memory]
        p.cpus = options[:cpus] if options[:cpus]
      end

      # provider: virtualbox
      node_config.vm.provider :virtualbox do |vb, override|
[...]
        vb.memory = options[:memory] if options[:memory]
        vb.cpus = options[:cpus] if options[:cpus]
end

      # provider: libvirt
      node_config.vm.provider :libvirt do |lv, override|
        override.vm.box = options[:box_libvirt]
        lv.memory = options[:memory] if options[:memory]
        lv.cpus = options[:cpus] if options[:cpus]
end

Icinga2-elastic vagrant up keeps failing

Just doing a vagrant up for icinga2-elastic fails to reach elasticsearch after which the vagrant up fails:

walterheck in ~/source/icinga-vagrant/icinga2x-elastic on master*
⚡ vagrant up
Bringing machine 'icinga2-elastic' up with 'virtualbox' provider...
==> icinga2-elastic: Cloning VM...
==> icinga2-elastic: Matching MAC address for NAT networking...
==> icinga2-elastic: Checking if box 'bento/centos-7.3' is up to date...
==> icinga2-elastic: Setting the name of the VM: icinga2-elastic
==> icinga2-elastic: Fixed port collision for 22 => 2222. Now on port 2200.
==> icinga2-elastic: Clearing any previously set network interfaces...
==> icinga2-elastic: Preparing network interfaces based on configuration...
    icinga2-elastic: Adapter 1: nat
    icinga2-elastic: Adapter 2: hostonly
==> icinga2-elastic: Forwarding ports...
    icinga2-elastic: 22 (guest) => 2200 (host) (adapter 1)
==> icinga2-elastic: Running 'pre-boot' VM customizations...
==> icinga2-elastic: Booting VM...
==> icinga2-elastic: Waiting for machine to boot. This may take a few minutes...
    icinga2-elastic: SSH address: 127.0.0.1:2200
    icinga2-elastic: SSH username: vagrant
    icinga2-elastic: SSH auth method: private key
    icinga2-elastic: Warning: Remote connection disconnect. Retrying...
    icinga2-elastic: Warning: Remote connection disconnect. Retrying...
    icinga2-elastic: Warning: Remote connection disconnect. Retrying...
    icinga2-elastic:
    icinga2-elastic: Vagrant insecure key detected. Vagrant will automatically replace
    icinga2-elastic: this with a newly generated keypair for better security.
    icinga2-elastic:
    icinga2-elastic: Inserting generated public key within guest...
    icinga2-elastic: Removing insecure key from the guest if it's present...
    icinga2-elastic: Key inserted! Disconnecting and reconnecting using new SSH key...
==> icinga2-elastic: Machine booted and ready!
==> icinga2-elastic: Checking for guest additions in VM...
==> icinga2-elastic: Setting hostname...
==> icinga2-elastic: Configuring and enabling network interfaces...
==> icinga2-elastic: Mounting shared folders...
    icinga2-elastic: /vagrant => /Users/walterheck/Dropbox/Source/icinga-vagrant/icinga2x-elastic
    icinga2-elastic: /tmp/vagrant-puppet/modules-38f7622f5353178940581477c038a4e9 => /Users/walterheck/Dropbox/Source/icinga-vagrant/modules
    icinga2-elastic: /tmp/vagrant-puppet/manifests-a11d1078b1b1f2e3bdea27312f6ba513 => /Users/walterheck/Dropbox/Source/icinga-vagrant/icinga2x-elastic/manifests
==> icinga2-elastic: Running provisioner: shell...
    icinga2-elastic: Running: inline script
==> icinga2-elastic: Restarting network (via systemctl):
==> icinga2-elastic: [  OK  ]
==> icinga2-elastic: Running provisioner: shell...
    icinga2-elastic: Running: /var/folders/4v/klggnrpd2sl_5z477vp2rdpm0000gn/T/vagrant-shell20170621-23814-18wn1c0.sh
==> icinga2-elastic: Running initial upgrade
==> icinga2-elastic: Loaded plugins: fastestmirror
==> icinga2-elastic: Determining fastest mirrors
==> icinga2-elastic:  * base: ftp.nluug.nl
==> icinga2-elastic:  * extras: ftp.tudelft.nl
==> icinga2-elastic:  * updates: centos.ams.host-engine.com
==> icinga2-elastic: Resolving Dependencies
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package NetworkManager.x86_64 1:1.4.0-12.el7 will be updated
==> icinga2-elastic: ---> Package NetworkManager.x86_64 1:1.4.0-20.el7_3 will be an update
==> icinga2-elastic: ---> Package NetworkManager-libnm.x86_64 1:1.4.0-12.el7 will be updated
==> icinga2-elastic: ---> Package NetworkManager-libnm.x86_64 1:1.4.0-20.el7_3 will be an update
==> icinga2-elastic: ---> Package NetworkManager-team.x86_64 1:1.4.0-12.el7 will be updated
==> icinga2-elastic: ---> Package NetworkManager-team.x86_64 1:1.4.0-20.el7_3 will be an update
==> icinga2-elastic: ---> Package NetworkManager-tui.x86_64 1:1.4.0-12.el7 will be updated
==> icinga2-elastic: ---> Package NetworkManager-tui.x86_64 1:1.4.0-20.el7_3 will be an update
==> icinga2-elastic: ---> Package NetworkManager-wifi.x86_64 1:1.4.0-12.el7 will be updated
==> icinga2-elastic: ---> Package NetworkManager-wifi.x86_64 1:1.4.0-20.el7_3 will be an update
==> icinga2-elastic: ---> Package audit.x86_64 0:2.6.5-3.el7 will be updated
==> icinga2-elastic: ---> Package audit.x86_64 0:2.6.5-3.el7_3.1 will be an update
==> icinga2-elastic: ---> Package audit-libs.x86_64 0:2.6.5-3.el7 will be updated
==> icinga2-elastic: ---> Package audit-libs.x86_64 0:2.6.5-3.el7_3.1 will be an update
==> icinga2-elastic: ---> Package audit-libs-python.x86_64 0:2.6.5-3.el7 will be updated
==> icinga2-elastic: ---> Package audit-libs-python.x86_64 0:2.6.5-3.el7_3.1 will be an update
==> icinga2-elastic: ---> Package bash.x86_64 0:4.2.46-20.el7_2 will be updated
==> icinga2-elastic: ---> Package bash.x86_64 0:4.2.46-21.el7_3 will be an update
==> icinga2-elastic: ---> Package bind-libs-lite.x86_64 32:9.9.4-37.el7 will be updated
==> icinga2-elastic: ---> Package bind-libs-lite.x86_64 32:9.9.4-38.el7_3.3 will be an update
==> icinga2-elastic: ---> Package bind-license.noarch 32:9.9.4-37.el7 will be updated
==> icinga2-elastic: ---> Package bind-license.noarch 32:9.9.4-38.el7_3.3 will be an update
==> icinga2-elastic: ---> Package ca-certificates.noarch 0:2015.2.6-73.el7 will be updated
==> icinga2-elastic: ---> Package ca-certificates.noarch 0:2017.2.14-70.1.el7_3 will be an update
==> icinga2-elastic: ---> Package chrony.x86_64 0:2.1.1-3.el7.centos will be updated
==> icinga2-elastic: ---> Package chrony.x86_64 0:2.1.1-4.el7.centos will be an update
==> icinga2-elastic: ---> Package device-mapper.x86_64 7:1.02.135-1.el7 will be updated
==> icinga2-elastic: ---> Package device-mapper.x86_64 7:1.02.135-1.el7_3.4 will be an update
==> icinga2-elastic: ---> Package device-mapper-event.x86_64 7:1.02.135-1.el7 will be updated
==> icinga2-elastic: ---> Package device-mapper-event.x86_64 7:1.02.135-1.el7_3.4 will be an update
==> icinga2-elastic: ---> Package device-mapper-event-libs.x86_64 7:1.02.135-1.el7 will be updated
==> icinga2-elastic: ---> Package device-mapper-event-libs.x86_64 7:1.02.135-1.el7_3.4 will be an update
==> icinga2-elastic: ---> Package device-mapper-libs.x86_64 7:1.02.135-1.el7 will be updated
==> icinga2-elastic: ---> Package device-mapper-libs.x86_64 7:1.02.135-1.el7_3.4 will be an update
==> icinga2-elastic: ---> Package dmidecode.x86_64 1:3.0-2.el7 will be updated
==> icinga2-elastic: ---> Package dmidecode.x86_64 1:3.0-2.1.el7_3 will be an update
==> icinga2-elastic: ---> Package dracut.x86_64 0:033-463.el7 will be updated
==> icinga2-elastic: ---> Package dracut.x86_64 0:033-463.el7_3.1 will be an update
==> icinga2-elastic: ---> Package dracut-config-rescue.x86_64 0:033-463.el7 will be updated
==> icinga2-elastic: ---> Package dracut-config-rescue.x86_64 0:033-463.el7_3.1 will be an update
==> icinga2-elastic: ---> Package dracut-network.x86_64 0:033-463.el7 will be updated
==> icinga2-elastic: ---> Package dracut-network.x86_64 0:033-463.el7_3.1 will be an update
==> icinga2-elastic: ---> Package expat.x86_64 0:2.1.0-8.el7 will be updated
==> icinga2-elastic: ---> Package expat.x86_64 0:2.1.0-10.el7_3 will be an update
==> icinga2-elastic: ---> Package firewalld.noarch 0:0.4.3.2-8.el7 will be updated
==> icinga2-elastic: ---> Package firewalld.noarch 0:0.4.3.2-8.1.el7_3.3 will be an update
==> icinga2-elastic: ---> Package firewalld-filesystem.noarch 0:0.4.3.2-8.el7 will be updated
==> icinga2-elastic: ---> Package firewalld-filesystem.noarch 0:0.4.3.2-8.1.el7_3.3 will be an update
==> icinga2-elastic: ---> Package glibc.x86_64 0:2.17-157.el7 will be updated
==> icinga2-elastic: ---> Package glibc.x86_64 0:2.17-157.el7_3.4 will be an update
==> icinga2-elastic: ---> Package glibc-common.x86_64 0:2.17-157.el7 will be updated
==> icinga2-elastic: ---> Package glibc-common.x86_64 0:2.17-157.el7_3.4 will be an update
==> icinga2-elastic: ---> Package grubby.x86_64 0:8.28-18.el7 will be updated
==> icinga2-elastic: ---> Package grubby.x86_64 0:8.28-21.el7_3 will be an update
==> icinga2-elastic: ---> Package initscripts.x86_64 0:9.49.37-1.el7 will be updated
==> icinga2-elastic: ---> Package initscripts.x86_64 0:9.49.37-1.el7_3.1 will be an update
==> icinga2-elastic: ---> Package irqbalance.x86_64 3:1.0.7-6.el7 will be updated
==> icinga2-elastic: ---> Package irqbalance.x86_64 3:1.0.7-6.el7_3.1 will be an update
==> icinga2-elastic: ---> Package kernel.x86_64 0:3.10.0-514.21.2.el7 will be installed
==> icinga2-elastic: ---> Package kernel-tools.x86_64 0:3.10.0-514.el7 will be updated
==> icinga2-elastic: ---> Package kernel-tools.x86_64 0:3.10.0-514.21.2.el7 will be an update
==> icinga2-elastic: ---> Package kernel-tools-libs.x86_64 0:3.10.0-514.el7 will be updated
==> icinga2-elastic: ---> Package kernel-tools-libs.x86_64 0:3.10.0-514.21.2.el7 will be an update
==> icinga2-elastic: ---> Package kpartx.x86_64 0:0.4.9-99.el7 will be updated
==> icinga2-elastic: ---> Package kpartx.x86_64 0:0.4.9-99.el7_3.3 will be an update
==> icinga2-elastic: ---> Package krb5-libs.x86_64 0:1.14.1-26.el7 will be updated
==> icinga2-elastic: ---> Package krb5-libs.x86_64 0:1.14.1-27.el7_3 will be an update
==> icinga2-elastic: ---> Package libblkid.x86_64 0:2.23.2-33.el7 will be updated
==> icinga2-elastic: ---> Package libblkid.x86_64 0:2.23.2-33.el7_3.2 will be an update
==> icinga2-elastic: ---> Package libgcrypt.x86_64 0:1.5.3-12.el7_1.1 will be updated
==> icinga2-elastic: ---> Package libgcrypt.x86_64 0:1.5.3-13.el7_3.1 will be an update
==> icinga2-elastic: ---> Package libgudev1.x86_64 0:219-30.el7 will be updated
==> icinga2-elastic: ---> Package libgudev1.x86_64 0:219-30.el7_3.9 will be an update
==> icinga2-elastic: ---> Package libmount.x86_64 0:2.23.2-33.el7 will be updated
==> icinga2-elastic: ---> Package libmount.x86_64 0:2.23.2-33.el7_3.2 will be an update
==> icinga2-elastic: ---> Package libnetfilter_conntrack.x86_64 0:1.0.4-2.el7 will be updated
==> icinga2-elastic: ---> Package libnetfilter_conntrack.x86_64 0:1.0.6-1.el7_3 will be an update
==> icinga2-elastic: ---> Package libnl3.x86_64 0:3.2.28-2.el7 will be updated
==> icinga2-elastic: ---> Package libnl3.x86_64 0:3.2.28-3.el7_3 will be an update
==> icinga2-elastic: ---> Package libnl3-cli.x86_64 0:3.2.28-2.el7 will be updated
==> icinga2-elastic: ---> Package libnl3-cli.x86_64 0:3.2.28-3.el7_3 will be an update
==> icinga2-elastic: ---> Package libpciaccess.x86_64 0:0.13.4-2.el7 will be updated
==> icinga2-elastic: ---> Package libpciaccess.x86_64 0:0.13.4-3.el7_3 will be an update
==> icinga2-elastic: ---> Package libsemanage.x86_64 0:2.5-4.el7 will be updated
==> icinga2-elastic: ---> Package libsemanage.x86_64 0:2.5-5.1.el7_3 will be an update
==> icinga2-elastic: ---> Package libsemanage-python.x86_64 0:2.5-4.el7 will be updated
==> icinga2-elastic: ---> Package libsemanage-python.x86_64 0:2.5-5.1.el7_3 will be an update
==> icinga2-elastic: ---> Package libtirpc.x86_64 0:0.2.4-0.8.el7 will be updated
==> icinga2-elastic: ---> Package libtirpc.x86_64 0:0.2.4-0.8.el7_3 will be an update
==> icinga2-elastic: ---> Package libuuid.x86_64 0:2.23.2-33.el7 will be updated
==> icinga2-elastic: ---> Package libuuid.x86_64 0:2.23.2-33.el7_3.2 will be an update
==> icinga2-elastic: ---> Package lvm2.x86_64 7:2.02.166-1.el7 will be updated
==> icinga2-elastic: ---> Package lvm2.x86_64 7:2.02.166-1.el7_3.4 will be an update
==> icinga2-elastic: ---> Package lvm2-libs.x86_64 7:2.02.166-1.el7 will be updated
==> icinga2-elastic: ---> Package lvm2-libs.x86_64 7:2.02.166-1.el7_3.4 will be an update
==> icinga2-elastic: ---> Package microcode_ctl.x86_64 2:2.1-16.el7 will be updated
==> icinga2-elastic: ---> Package microcode_ctl.x86_64 2:2.1-16.3.el7_3 will be an update
==> icinga2-elastic: ---> Package nfs-utils.x86_64 1:1.3.0-0.33.el7 will be updated
==> icinga2-elastic: ---> Package nfs-utils.x86_64 1:1.3.0-0.33.el7_3 will be an update
==> icinga2-elastic: ---> Package nspr.x86_64 0:4.11.0-1.el7_2 will be updated
==> icinga2-elastic: ---> Package nspr.x86_64 0:4.13.1-1.0.el7_3 will be an update
==> icinga2-elastic: ---> Package nss.x86_64 0:3.21.0-17.el7 will be updated
==> icinga2-elastic: ---> Package nss.x86_64 0:3.28.4-1.2.el7_3 will be an update
==> icinga2-elastic: ---> Package nss-sysinit.x86_64 0:3.21.0-17.el7 will be updated
==> icinga2-elastic: ---> Package nss-sysinit.x86_64 0:3.28.4-1.2.el7_3 will be an update
==> icinga2-elastic: ---> Package nss-tools.x86_64 0:3.21.0-17.el7 will be updated
==> icinga2-elastic: ---> Package nss-tools.x86_64 0:3.28.4-1.2.el7_3 will be an update
==> icinga2-elastic: ---> Package nss-util.x86_64 0:3.21.0-2.2.el7_2 will be updated
==> icinga2-elastic: ---> Package nss-util.x86_64 0:3.28.4-1.0.el7_3 will be an update
==> icinga2-elastic: ---> Package openssh.x86_64 0:6.6.1p1-31.el7 will be updated
==> icinga2-elastic: ---> Package openssh.x86_64 0:6.6.1p1-35.el7_3 will be an update
==> icinga2-elastic: ---> Package openssh-clients.x86_64 0:6.6.1p1-31.el7 will be updated
==> icinga2-elastic: ---> Package openssh-clients.x86_64 0:6.6.1p1-35.el7_3 will be an update
==> icinga2-elastic: ---> Package openssh-server.x86_64 0:6.6.1p1-31.el7 will be updated
==> icinga2-elastic: ---> Package openssh-server.x86_64 0:6.6.1p1-35.el7_3 will be an update
==> icinga2-elastic: ---> Package openssl.x86_64 1:1.0.1e-60.el7 will be updated
==> icinga2-elastic: ---> Package openssl.x86_64 1:1.0.1e-60.el7_3.1 will be an update
==> icinga2-elastic: ---> Package openssl-libs.x86_64 1:1.0.1e-60.el7 will be updated
==> icinga2-elastic: ---> Package openssl-libs.x86_64 1:1.0.1e-60.el7_3.1 will be an update
==> icinga2-elastic: ---> Package policycoreutils.x86_64 0:2.5-8.el7 will be updated
==> icinga2-elastic: ---> Package policycoreutils.x86_64 0:2.5-11.el7_3 will be an update
==> icinga2-elastic: ---> Package policycoreutils-devel.x86_64 0:2.5-8.el7 will be updated
==> icinga2-elastic: ---> Package policycoreutils-devel.x86_64 0:2.5-11.el7_3 will be an update
==> icinga2-elastic: ---> Package policycoreutils-python.x86_64 0:2.5-8.el7 will be updated
==> icinga2-elastic: ---> Package policycoreutils-python.x86_64 0:2.5-11.el7_3 will be an update
==> icinga2-elastic: ---> Package polkit.x86_64 0:0.112-9.el7 will be updated
==> icinga2-elastic: ---> Package polkit.x86_64 0:0.112-12.el7_3 will be an update
==> icinga2-elastic: ---> Package python-firewall.noarch 0:0.4.3.2-8.el7 will be updated
==> icinga2-elastic: ---> Package python-firewall.noarch 0:0.4.3.2-8.1.el7_3.3 will be an update
==> icinga2-elastic: ---> Package python-perf.x86_64 0:3.10.0-514.el7 will be updated
==> icinga2-elastic: ---> Package python-perf.x86_64 0:3.10.0-514.21.2.el7 will be an update
==> icinga2-elastic: ---> Package rdma.noarch 0:7.3_4.7_rc2-5.el7 will be updated
==> icinga2-elastic: ---> Package rdma.noarch 0:7.3_4.7_rc2-6.el7_3 will be an update
==> icinga2-elastic: ---> Package rpcbind.x86_64 0:0.2.0-38.el7 will be updated
==> icinga2-elastic: ---> Package rpcbind.x86_64 0:0.2.0-38.el7_3.1 will be an update
==> icinga2-elastic: ---> Package selinux-policy.noarch 0:3.13.1-102.el7 will be updated
==> icinga2-elastic: ---> Package selinux-policy.noarch 0:3.13.1-102.el7_3.16 will be an update
==> icinga2-elastic: ---> Package selinux-policy-devel.noarch 0:3.13.1-102.el7 will be updated
==> icinga2-elastic: ---> Package selinux-policy-devel.noarch 0:3.13.1-102.el7_3.16 will be an update
==> icinga2-elastic: ---> Package selinux-policy-targeted.noarch 0:3.13.1-102.el7 will be updated
==> icinga2-elastic: ---> Package selinux-policy-targeted.noarch 0:3.13.1-102.el7_3.16 will be an update
==> icinga2-elastic: ---> Package sudo.x86_64 0:1.8.6p7-20.el7 will be updated
==> icinga2-elastic: ---> Package sudo.x86_64 0:1.8.6p7-22.el7_3 will be an update
==> icinga2-elastic: ---> Package systemd.x86_64 0:219-30.el7 will be updated
==> icinga2-elastic: ---> Package systemd.x86_64 0:219-30.el7_3.9 will be an update
==> icinga2-elastic: ---> Package systemd-libs.x86_64 0:219-30.el7 will be updated
==> icinga2-elastic: ---> Package systemd-libs.x86_64 0:219-30.el7_3.9 will be an update
==> icinga2-elastic: ---> Package systemd-sysv.x86_64 0:219-30.el7 will be updated
==> icinga2-elastic: ---> Package systemd-sysv.x86_64 0:219-30.el7_3.9 will be an update
==> icinga2-elastic: ---> Package tuned.noarch 0:2.7.1-3.el7 will be updated
==> icinga2-elastic: ---> Package tuned.noarch 0:2.7.1-3.el7_3.2 will be an update
==> icinga2-elastic: ---> Package tzdata.noarch 0:2016g-2.el7 will be updated
==> icinga2-elastic: ---> Package tzdata.noarch 0:2017b-1.el7 will be an update
==> icinga2-elastic: ---> Package util-linux.x86_64 0:2.23.2-33.el7 will be updated
==> icinga2-elastic: ---> Package util-linux.x86_64 0:2.23.2-33.el7_3.2 will be an update
==> icinga2-elastic: ---> Package vim-minimal.x86_64 2:7.4.160-1.el7 will be updated
==> icinga2-elastic: ---> Package vim-minimal.x86_64 2:7.4.160-1.el7_3.1 will be an update
==> icinga2-elastic: ---> Package wpa_supplicant.x86_64 1:2.0-20.el7 will be updated
==> icinga2-elastic: ---> Package wpa_supplicant.x86_64 1:2.0-21.el7_3 will be an update
==> icinga2-elastic: ---> Package xfsprogs.x86_64 0:4.5.0-8.el7 will be updated
==> icinga2-elastic: ---> Package xfsprogs.x86_64 0:4.5.0-9.el7_3 will be an update
==> icinga2-elastic: --> Finished Dependency Resolution
==> icinga2-elastic:
==> icinga2-elastic: Dependencies Resolved
==> icinga2-elastic:
==> icinga2-elastic: ================================================================================
==> icinga2-elastic:  Package                     Arch      Version                 Repository  Size
==> icinga2-elastic: ================================================================================
==> icinga2-elastic: Installing:
==> icinga2-elastic:  kernel                      x86_64    3.10.0-514.21.2.el7     updates     37 M
==> icinga2-elastic: Updating:
==> icinga2-elastic:  NetworkManager              x86_64    1:1.4.0-20.el7_3        updates    2.5 M
==> icinga2-elastic:  NetworkManager-libnm        x86_64    1:1.4.0-20.el7_3        updates    443 k
==> icinga2-elastic:  NetworkManager-team         x86_64    1:1.4.0-20.el7_3        updates    147 k
==> icinga2-elastic:  NetworkManager-tui          x86_64    1:1.4.0-20.el7_3        updates    224 k
==> icinga2-elastic:  NetworkManager-wifi         x86_64    1:1.4.0-20.el7_3        updates    176 k
==> icinga2-elastic:  audit                       x86_64    2.6.5-3.el7_3.1         updates    233 k
==> icinga2-elastic:  audit-libs                  x86_64    2.6.5-3.el7_3.1         updates     85 k
==> icinga2-elastic:  audit-libs-python           x86_64    2.6.5-3.el7_3.1         updates     70 k
==> icinga2-elastic:  bash                        x86_64    4.2.46-21.el7_3         updates    1.0 M
==> icinga2-elastic:  bind-libs-lite              x86_64    32:9.9.4-38.el7_3.3     updates    730 k
==> icinga2-elastic:  bind-license                noarch    32:9.9.4-38.el7_3.3     updates     83 k
==> icinga2-elastic:  ca-certificates             noarch    2017.2.14-70.1.el7_3    updates    438 k
==> icinga2-elastic:  chrony                      x86_64    2.1.1-4.el7.centos      updates    281 k
==> icinga2-elastic:  device-mapper               x86_64    7:1.02.135-1.el7_3.4    updates    269 k
==> icinga2-elastic:  device-mapper-event         x86_64    7:1.02.135-1.el7_3.4    updates    178 k
==> icinga2-elastic:  device-mapper-event-libs    x86_64    7:1.02.135-1.el7_3.4    updates    177 k
==> icinga2-elastic:  device-mapper-libs          x86_64    7:1.02.135-1.el7_3.4    updates    333 k
==> icinga2-elastic:  dmidecode                   x86_64    1:3.0-2.1.el7_3         updates     83 k
==> icinga2-elastic:  dracut                      x86_64    033-463.el7_3.1         updates    317 k
==> icinga2-elastic:  dracut-config-rescue        x86_64    033-463.el7_3.1         updates     54 k
==> icinga2-elastic:  dracut-network              x86_64    033-463.el7_3.1         updates     96 k
==> icinga2-elastic:  expat                       x86_64    2.1.0-10.el7_3          updates     81 k
==> icinga2-elastic:  firewalld                   noarch    0.4.3.2-8.1.el7_3.3     updates    386 k
==> icinga2-elastic:  firewalld-filesystem        noarch    0.4.3.2-8.1.el7_3.3     updates     45 k
==> icinga2-elastic:  glibc                       x86_64    2.17-157.el7_3.4        updates    3.6 M
==> icinga2-elastic:  glibc-common                x86_64    2.17-157.el7_3.4        updates     11 M
==> icinga2-elastic:  grubby                      x86_64    8.28-21.el7_3           updates     70 k
==> icinga2-elastic:  initscripts                 x86_64    9.49.37-1.el7_3.1       updates    432 k
==> icinga2-elastic:  irqbalance                  x86_64    3:1.0.7-6.el7_3.1       updates     44 k
==> icinga2-elastic:  kernel-tools                x86_64    3.10.0-514.21.2.el7     updates    4.0 M
==> icinga2-elastic:  kernel-tools-libs           x86_64    3.10.0-514.21.2.el7     updates    3.9 M
==> icinga2-elastic:  kpartx                      x86_64    0.4.9-99.el7_3.3        updates     68 k
==> icinga2-elastic:  krb5-libs                   x86_64    1.14.1-27.el7_3         updates    740 k
==> icinga2-elastic:  libblkid                    x86_64    2.23.2-33.el7_3.2       updates    170 k
==> icinga2-elastic:  libgcrypt                   x86_64    1.5.3-13.el7_3.1        updates    263 k
==> icinga2-elastic:  libgudev1                   x86_64    219-30.el7_3.9          updates     77 k
==> icinga2-elastic:  libmount                    x86_64    2.23.2-33.el7_3.2       updates    172 k
==> icinga2-elastic:  libnetfilter_conntrack      x86_64    1.0.6-1.el7_3           updates     55 k
==> icinga2-elastic:  libnl3                      x86_64    3.2.28-3.el7_3          updates    278 k
==> icinga2-elastic:  libnl3-cli                  x86_64    3.2.28-3.el7_3          updates    160 k
==> icinga2-elastic:  libpciaccess                x86_64    0.13.4-3.el7_3          updates     26 k
==> icinga2-elastic:  libsemanage                 x86_64    2.5-5.1.el7_3           updates    144 k
==> icinga2-elastic:  libsemanage-python          x86_64    2.5-5.1.el7_3           updates    104 k
==> icinga2-elastic:  libtirpc                    x86_64    0.2.4-0.8.el7_3         updates     88 k
==> icinga2-elastic:  libuuid                     x86_64    2.23.2-33.el7_3.2       updates     76 k
==> icinga2-elastic:  lvm2                        x86_64    7:2.02.166-1.el7_3.4    updates    1.1 M
==> icinga2-elastic:  lvm2-libs                   x86_64    7:2.02.166-1.el7_3.4    updates    986 k
==> icinga2-elastic:  microcode_ctl               x86_64    2:2.1-16.3.el7_3        updates    745 k
==> icinga2-elastic:  nfs-utils                   x86_64    1:1.3.0-0.33.el7_3      updates    377 k
==> icinga2-elastic:  nspr                        x86_64    4.13.1-1.0.el7_3        updates    126 k
==> icinga2-elastic:  nss                         x86_64    3.28.4-1.2.el7_3        updates    872 k
==> icinga2-elastic:  nss-sysinit                 x86_64    3.28.4-1.2.el7_3        updates     58 k
==> icinga2-elastic:  nss-tools                   x86_64    3.28.4-1.2.el7_3        updates    496 k
==> icinga2-elastic:  nss-util                    x86_64    3.28.4-1.0.el7_3        updates     73 k
==> icinga2-elastic:  openssh                     x86_64    6.6.1p1-35.el7_3        updates    438 k
==> icinga2-elastic:  openssh-clients             x86_64    6.6.1p1-35.el7_3        updates    642 k
==> icinga2-elastic:  openssh-server              x86_64    6.6.1p1-35.el7_3        updates    440 k
==> icinga2-elastic:  openssl                     x86_64    1:1.0.1e-60.el7_3.1     updates    713 k
==> icinga2-elastic:  openssl-libs                x86_64    1:1.0.1e-60.el7_3.1     updates    959 k
==> icinga2-elastic:  policycoreutils             x86_64    2.5-11.el7_3            updates    841 k
==> icinga2-elastic:  policycoreutils-devel       x86_64    2.5-11.el7_3            updates    330 k
==> icinga2-elastic:  policycoreutils-python      x86_64    2.5-11.el7_3            updates    445 k
==> icinga2-elastic:  polkit                      x86_64    0.112-12.el7_3          updates    167 k
==> icinga2-elastic:  python-firewall             noarch    0.4.3.2-8.1.el7_3.3     updates    301 k
==> icinga2-elastic:  python-perf                 x86_64    3.10.0-514.21.2.el7     updates    4.0 M
==> icinga2-elastic:  rdma                        noarch    7.3_4.7_rc2-6.el7_3     updates     30 k
==> icinga2-elastic:  rpcbind                     x86_64    0.2.0-38.el7_3.1        updates     59 k
==> icinga2-elastic:  selinux-policy              noarch    3.13.1-102.el7_3.16     updates    414 k
==> icinga2-elastic:  selinux-policy-devel        noarch    3.13.1-102.el7_3.16     updates    1.6 M
==> icinga2-elastic:  selinux-policy-targeted     noarch    3.13.1-102.el7_3.16     updates    6.4 M
==> icinga2-elastic:  sudo                        x86_64    1.8.6p7-22.el7_3        updates    735 k
==> icinga2-elastic:  systemd                     x86_64    219-30.el7_3.9          updates    5.2 M
==> icinga2-elastic:  systemd-libs                x86_64    219-30.el7_3.9          updates    369 k
==> icinga2-elastic:  systemd-sysv                x86_64    219-30.el7_3.9          updates     64 k
==> icinga2-elastic:  tuned                       noarch    2.7.1-3.el7_3.2         updates    210 k
==> icinga2-elastic:  tzdata                      noarch    2017b-1.el7             updates    443 k
==> icinga2-elastic:  util-linux                  x86_64    2.23.2-33.el7_3.2       updates    1.9 M
==> icinga2-elastic:  vim-minimal                 x86_64    2:7.4.160-1.el7_3.1     updates    436 k
==> icinga2-elastic:  wpa_supplicant              x86_64    1:2.0-21.el7_3          updates    788 k
==> icinga2-elastic:  xfsprogs                    x86_64    4.5.0-9.el7_3           updates    895 k
==> icinga2-elastic:
==> icinga2-elastic: Transaction Summary
==> icinga2-elastic: ================================================================================
==> icinga2-elastic: Install   1 Package
==> icinga2-elastic: Upgrade  80 Packages
==> icinga2-elastic:
==> icinga2-elastic: Total download size: 105 M
==> icinga2-elastic: Downloading packages:
==> icinga2-elastic: Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
==> icinga2-elastic: Public key for NetworkManager-team-1.4.0-20.el7_3.x86_64.rpm is not installed
==> icinga2-elastic: warning: /var/cache/yum/x86_64/7/updates/packages/NetworkManager-team-1.4.0-20.el7_3.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
==> icinga2-elastic: --------------------------------------------------------------------------------
==> icinga2-elastic: Total                                              3.1 MB/s | 105 MB  00:33
==> icinga2-elastic: Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
==> icinga2-elastic: Importing GPG key 0xF4A80EB5:
==> icinga2-elastic:  Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <[email protected]>"
==> icinga2-elastic:  Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
==> icinga2-elastic:  Package    : centos-release-7-3.1611.el7.centos.x86_64 (@anaconda)
==> icinga2-elastic:  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
==> icinga2-elastic: Running transaction check
==> icinga2-elastic: Running transaction test
==> icinga2-elastic: Transaction test succeeded
==> icinga2-elastic: Running transaction
==> icinga2-elastic:   Updating   : 32:bind-license-9.9.4-38.el7_3.3.noarch                    1/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : tzdata-2017b-1.el7.noarch                                  2/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : glibc-2.17-157.el7_3.4.x86_64                              3/161
==> icinga2-elastic:
==> icinga2-elastic: warning: /etc/nsswitch.conf created as /etc/nsswitch.conf.rpmnew
==> icinga2-elastic:   Updating   : bash-4.2.46-21.el7_3.x86_64                                4/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : glibc-common-2.17-157.el7_3.4.x86_64                       5/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : audit-libs-2.6.5-3.el7_3.1.x86_64                          6/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : nspr-4.13.1-1.0.el7_3.x86_64                               7/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libuuid-2.23.2-33.el7_3.2.x86_64                           8/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libblkid-2.23.2-33.el7_3.2.x86_64                          9/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : nss-util-3.28.4-1.0.el7_3.x86_64                          10/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : nss-3.28.4-1.2.el7_3.x86_64                               11/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : nss-sysinit-3.28.4-1.2.el7_3.x86_64                       12/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libmount-2.23.2-33.el7_3.2.x86_64                         13/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libsemanage-2.5-5.1.el7_3.x86_64                          14/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libnl3-3.2.28-3.el7_3.x86_64                              15/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libgcrypt-1.5.3-13.el7_3.1.x86_64                         16/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : systemd-libs-219-30.el7_3.9.x86_64                        17/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : systemd-219-30.el7_3.9.x86_64                             18/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : util-linux-2.23.2-33.el7_3.2.x86_64                       19/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libgudev1-219-30.el7_3.9.x86_64                           20/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : policycoreutils-2.5-11.el7_3.x86_64                       21/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : systemd-sysv-219-30.el7_3.9.x86_64                        22/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : selinux-policy-3.13.1-102.el7_3.16.noarch                 23/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:NetworkManager-libnm-1.4.0-20.el7_3.x86_64              24/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 7:device-mapper-libs-1.02.135-1.el7_3.4.x86_64            25/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 7:device-mapper-1.02.135-1.el7_3.4.x86_64                 26/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 7:device-mapper-event-libs-1.02.135-1.el7_3.4.x86_64      27/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 7:device-mapper-event-1.02.135-1.el7_3.4.x86_64           28/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 7:lvm2-libs-2.02.166-1.el7_3.4.x86_64                     29/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : kpartx-0.4.9-99.el7_3.3.x86_64                            30/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : dracut-033-463.el7_3.1.x86_64                             31/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : initscripts-9.49.37-1.el7_3.1.x86_64                      32/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libsemanage-python-2.5-5.1.el7_3.x86_64                   33/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : grubby-8.28-21.el7_3.x86_64                               34/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : audit-libs-python-2.6.5-3.el7_3.1.x86_64                  35/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : policycoreutils-python-2.5-11.el7_3.x86_64                36/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : policycoreutils-devel-2.5-11.el7_3.x86_64                 37/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : selinux-policy-devel-3.13.1-102.el7_3.16.noarch           38/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : ca-certificates-2017.2.14-70.1.el7_3.noarch               39/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:openssl-libs-1.0.1e-60.el7_3.1.x86_64                   40/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : krb5-libs-1.14.1-27.el7_3.x86_64                          41/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libtirpc-0.2.4-0.8.el7_3.x86_64                           42/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : openssh-6.6.1p1-35.el7_3.x86_64                           43/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:wpa_supplicant-2.0-21.el7_3.x86_64                      44/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : rpcbind-0.2.0-38.el7_3.1.x86_64                           45/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : kernel-tools-libs-3.10.0-514.21.2.el7.x86_64              46/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 2:vim-minimal-7.4.160-1.el7_3.1.x86_64                    47/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : python-perf-3.10.0-514.21.2.el7.x86_64                    48/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : expat-2.1.0-10.el7_3.x86_64                               49/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : polkit-0.112-12.el7_3.x86_64                              50/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:NetworkManager-1.4.0-20.el7_3.x86_64                    51/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : firewalld-filesystem-0.4.3.2-8.1.el7_3.3.noarch           52/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : python-firewall-0.4.3.2-8.1.el7_3.3.noarch                53/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : firewalld-0.4.3.2-8.1.el7_3.3.noarch                      54/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:NetworkManager-team-1.4.0-20.el7_3.x86_64               55/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:NetworkManager-wifi-1.4.0-20.el7_3.x86_64               56/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:NetworkManager-tui-1.4.0-20.el7_3.x86_64                57/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : tuned-2.7.1-3.el7_3.2.noarch                              58/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : sudo-1.8.6p7-22.el7_3.x86_64                              59/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : kernel-tools-3.10.0-514.21.2.el7.x86_64                   60/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:nfs-utils-1.3.0-0.33.el7_3.x86_64                       61/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : openssh-server-6.6.1p1-35.el7_3.x86_64                    62/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : openssh-clients-6.6.1p1-35.el7_3.x86_64                   63/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : audit-2.6.5-3.el7_3.1.x86_64                              64/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 32:bind-libs-lite-9.9.4-38.el7_3.3.x86_64                 65/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:openssl-1.0.1e-60.el7_3.1.x86_64                        66/161
==> icinga2-elastic:
==> icinga2-elastic:   Installing : kernel-3.10.0-514.21.2.el7.x86_64                         67/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : rdma-7.3_4.7_rc2-6.el7_3.noarch                           68/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : dracut-network-033-463.el7_3.1.x86_64                     69/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : dracut-config-rescue-033-463.el7_3.1.x86_64               70/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 7:lvm2-2.02.166-1.el7_3.4.x86_64                          71/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : selinux-policy-targeted-3.13.1-102.el7_3.16.noarch        72/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 3:irqbalance-1.0.7-6.el7_3.1.x86_64                       73/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : chrony-2.1.1-4.el7.centos.x86_64                          74/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 2:microcode_ctl-2.1-16.3.el7_3.x86_64                     75/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libnl3-cli-3.2.28-3.el7_3.x86_64                          76/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : nss-tools-3.28.4-1.2.el7_3.x86_64                         77/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : xfsprogs-4.5.0-9.el7_3.x86_64                             78/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libpciaccess-0.13.4-3.el7_3.x86_64                        79/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : libnetfilter_conntrack-1.0.6-1.el7_3.x86_64               80/161
==> icinga2-elastic:
==> icinga2-elastic:   Updating   : 1:dmidecode-3.0-2.1.el7_3.x86_64                          81/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:NetworkManager-tui-1.4.0-12.el7.x86_64                  82/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:nfs-utils-1.3.0-0.33.el7.x86_64                         83/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 7:lvm2-2.02.166-1.el7.x86_64                              84/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : openssh-server-6.6.1p1-31.el7.x86_64                      85/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 7:lvm2-libs-2.02.166-1.el7.x86_64                         86/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 7:device-mapper-event-1.02.135-1.el7.x86_64               87/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : rpcbind-0.2.0-38.el7.x86_64                               88/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : nss-tools-3.21.0-17.el7.x86_64                            89/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : openssh-clients-6.6.1p1-31.el7.x86_64                     90/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:openssl-1.0.1e-60.el7.x86_64                            91/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 32:bind-libs-lite-9.9.4-37.el7.x86_64                     92/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : audit-2.6.5-3.el7.x86_64                                  93/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : tuned-2.7.1-3.el7.noarch                                  94/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : openssh-6.6.1p1-31.el7.x86_64                             95/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : xfsprogs-4.5.0-8.el7.x86_64                               96/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : sudo-1.8.6p7-20.el7.x86_64                                97/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : kernel-tools-3.10.0-514.el7.x86_64                        98/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:NetworkManager-wifi-1.4.0-12.el7.x86_64                 99/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : firewalld-0.4.3.2-8.el7.noarch                           100/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : initscripts-9.49.37-1.el7.x86_64                         101/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:NetworkManager-team-1.4.0-12.el7.x86_64                102/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : policycoreutils-devel-2.5-8.el7.x86_64                   103/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : selinux-policy-devel-3.13.1-102.el7.noarch               104/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : selinux-policy-targeted-3.13.1-102.el7.noarch            105/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : selinux-policy-3.13.1-102.el7.noarch                     106/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : rdma-7.3_4.7_rc2-5.el7.noarch                            107/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:NetworkManager-1.4.0-12.el7.x86_64                     108/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:NetworkManager-libnm-1.4.0-12.el7.x86_64               109/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : nss-sysinit-3.21.0-17.el7.x86_64                         110/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : nss-3.21.0-17.el7.x86_64                                 111/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:wpa_supplicant-2.0-20.el7.x86_64                       112/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : polkit-0.112-9.el7.x86_64                                113/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : nss-util-3.21.0-2.2.el7_2.x86_64                         114/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : policycoreutils-python-2.5-8.el7.x86_64                  115/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : policycoreutils-2.5-8.el7.x86_64                         116/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libgudev1-219-30.el7.x86_64                              117/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libsemanage-python-2.5-4.el7.x86_64                      118/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libsemanage-2.5-4.el7.x86_64                             119/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libtirpc-0.2.4-0.8.el7.x86_64                            120/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : krb5-libs-1.14.1-26.el7.x86_64                           121/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:openssl-libs-1.0.1e-60.el7.x86_64                      122/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 7:device-mapper-event-libs-1.02.135-1.el7.x86_64         123/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : grubby-8.28-18.el7.x86_64                                124/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libnl3-cli-3.2.28-2.el7.x86_64                           125/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 2:microcode_ctl-2.1-16.el7.x86_64                        126/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : chrony-2.1.1-3.el7.centos.x86_64                         127/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 3:irqbalance-1.0.7-6.el7.x86_64                          128/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : dracut-config-rescue-033-463.el7.x86_64                  129/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : dracut-network-033-463.el7.x86_64                        130/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : ca-certificates-2015.2.6-73.el7.noarch                   131/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : systemd-sysv-219-30.el7.x86_64                           132/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : dracut-033-463.el7.x86_64                                133/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : kpartx-0.4.9-99.el7.x86_64                               134/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 7:device-mapper-1.02.135-1.el7.x86_64                    135/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 7:device-mapper-libs-1.02.135-1.el7.x86_64               136/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : util-linux-2.23.2-33.el7.x86_64                          137/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : systemd-219-30.el7.x86_64                                138/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libmount-2.23.2-33.el7.x86_64                            139/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libblkid-2.23.2-33.el7.x86_64                            140/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : systemd-libs-219-30.el7.x86_64                           141/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : audit-libs-python-2.6.5-3.el7.x86_64                     142/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : audit-libs-2.6.5-3.el7.x86_64                            143/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libgcrypt-1.5.3-12.el7_1.1.x86_64                        144/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libuuid-2.23.2-33.el7.x86_64                             145/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libnl3-3.2.28-2.el7.x86_64                               146/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : nspr-4.11.0-1.el7_2.x86_64                               147/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : expat-2.1.0-8.el7.x86_64                                 148/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : kernel-tools-libs-3.10.0-514.el7.x86_64                  149/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 2:vim-minimal-7.4.160-1.el7.x86_64                       150/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : python-perf-3.10.0-514.el7.x86_64                        151/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 1:dmidecode-3.0-2.el7.x86_64                             152/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libnetfilter_conntrack-1.0.4-2.el7.x86_64                153/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : libpciaccess-0.13.4-2.el7.x86_64                         154/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : firewalld-filesystem-0.4.3.2-8.el7.noarch                155/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : python-firewall-0.4.3.2-8.el7.noarch                     156/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : 32:bind-license-9.9.4-37.el7.noarch                      157/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : bash-4.2.46-20.el7_2.x86_64                              158/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : glibc-common-2.17-157.el7.x86_64                         159/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : glibc-2.17-157.el7.x86_64                                160/161
==> icinga2-elastic:
==> icinga2-elastic:   Cleanup    : tzdata-2016g-2.el7.noarch                                161/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : python-firewall-0.4.3.2-8.1.el7_3.3.noarch                 1/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nspr-4.13.1-1.0.el7_3.x86_64                               2/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-3.28.4-1.2.el7_3.x86_64                                3/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : selinux-policy-3.13.1-102.el7_3.16.noarch                  4/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : openssh-server-6.6.1p1-35.el7_3.x86_64                     5/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : policycoreutils-python-2.5-11.el7_3.x86_64                 6/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-util-3.28.4-1.0.el7_3.x86_64                           7/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : audit-2.6.5-3.el7_3.1.x86_64                               8/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-team-1.4.0-20.el7_3.x86_64                9/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rdma-7.3_4.7_rc2-6.el7_3.noarch                           10/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : bash-4.2.46-21.el7_3.x86_64                               11/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-libnm-1.4.0-20.el7_3.x86_64              12/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libgudev1-219-30.el7_3.9.x86_64                           13/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : ca-certificates-2017.2.14-70.1.el7_3.noarch               14/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : selinux-policy-targeted-3.13.1-102.el7_3.16.noarch        15/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 32:bind-libs-lite-9.9.4-38.el7_3.3.x86_64                 16/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 3:irqbalance-1.0.7-6.el7_3.1.x86_64                       17/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kernel-3.10.0-514.21.2.el7.x86_64                         18/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : firewalld-filesystem-0.4.3.2-8.1.el7_3.3.noarch           19/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : tzdata-2017b-1.el7.noarch                                 20/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : openssh-6.6.1p1-35.el7_3.x86_64                           21/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : openssh-clients-6.6.1p1-35.el7_3.x86_64                   22/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : glibc-2.17-157.el7_3.4.x86_64                             23/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : polkit-0.112-12.el7_3.x86_64                              24/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-wifi-1.4.0-20.el7_3.x86_64               25/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 32:bind-license-9.9.4-38.el7_3.3.noarch                   26/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-sysinit-3.28.4-1.2.el7_3.x86_64                       27/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : systemd-219-30.el7_3.9.x86_64                             28/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : glibc-common-2.17-157.el7_3.4.x86_64                      29/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libmount-2.23.2-33.el7_3.2.x86_64                         30/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : selinux-policy-devel-3.13.1-102.el7_3.16.noarch           31/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:openssl-libs-1.0.1e-60.el7_3.1.x86_64                   32/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-1.02.135-1.el7_3.4.x86_64                 33/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : util-linux-2.23.2-33.el7_3.2.x86_64                       34/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : chrony-2.1.1-4.el7.centos.x86_64                          35/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:nfs-utils-1.3.0-0.33.el7_3.x86_64                       36/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : policycoreutils-devel-2.5-11.el7_3.x86_64                 37/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libpciaccess-0.13.4-3.el7_3.x86_64                        38/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-libs-1.02.135-1.el7_3.4.x86_64            39/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kernel-tools-libs-3.10.0-514.21.2.el7.x86_64              40/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : dracut-network-033-463.el7_3.1.x86_64                     41/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:wpa_supplicant-2.0-21.el7_3.x86_64                      42/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : firewalld-0.4.3.2-8.1.el7_3.3.noarch                      43/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libnl3-3.2.28-3.el7_3.x86_64                              44/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 2:microcode_ctl-2.1-16.3.el7_3.x86_64                     45/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : systemd-libs-219-30.el7_3.9.x86_64                        46/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : audit-libs-python-2.6.5-3.el7_3.1.x86_64                  47/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 2:vim-minimal-7.4.160-1.el7_3.1.x86_64                    48/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kernel-tools-3.10.0-514.21.2.el7.x86_64                   49/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : dracut-033-463.el7_3.1.x86_64                             50/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libnl3-cli-3.2.28-3.el7_3.x86_64                          51/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-tools-3.28.4-1.2.el7_3.x86_64                         52/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : tuned-2.7.1-3.el7_3.2.noarch                              53/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : sudo-1.8.6p7-22.el7_3.x86_64                              54/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : policycoreutils-2.5-11.el7_3.x86_64                       55/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rpcbind-0.2.0-38.el7_3.1.x86_64                           56/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : python-perf-3.10.0-514.21.2.el7.x86_64                    57/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libuuid-2.23.2-33.el7_3.2.x86_64                          58/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : audit-libs-2.6.5-3.el7_3.1.x86_64                         59/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : expat-2.1.0-10.el7_3.x86_64                               60/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:openssl-1.0.1e-60.el7_3.1.x86_64                        61/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : dracut-config-rescue-033-463.el7_3.1.x86_64               62/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libnetfilter_conntrack-1.0.6-1.el7_3.x86_64               63/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-1.4.0-20.el7_3.x86_64                    64/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : krb5-libs-1.14.1-27.el7_3.x86_64                          65/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libblkid-2.23.2-33.el7_3.2.x86_64                         66/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-event-libs-1.02.135-1.el7_3.4.x86_64      67/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:lvm2-2.02.166-1.el7_3.4.x86_64                          68/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libgcrypt-1.5.3-13.el7_3.1.x86_64                         69/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : xfsprogs-4.5.0-9.el7_3.x86_64                             70/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : initscripts-9.49.37-1.el7_3.1.x86_64                      71/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : grubby-8.28-21.el7_3.x86_64                               72/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kpartx-0.4.9-99.el7_3.3.x86_64                            73/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libsemanage-2.5-5.1.el7_3.x86_64                          74/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:lvm2-libs-2.02.166-1.el7_3.4.x86_64                     75/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-tui-1.4.0-20.el7_3.x86_64                76/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-event-1.02.135-1.el7_3.4.x86_64           77/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : systemd-sysv-219-30.el7_3.9.x86_64                        78/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:dmidecode-3.0-2.1.el7_3.x86_64                          79/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libsemanage-python-2.5-5.1.el7_3.x86_64                   80/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libtirpc-0.2.4-0.8.el7_3.x86_64                           81/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 3:irqbalance-1.0.7-6.el7.x86_64                           82/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nspr-4.11.0-1.el7_2.x86_64                                83/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : selinux-policy-devel-3.13.1-102.el7.noarch                84/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libtirpc-0.2.4-0.8.el7.x86_64                             85/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libsemanage-python-2.5-4.el7.x86_64                       86/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:openssl-libs-1.0.1e-60.el7.x86_64                       87/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : audit-libs-2.6.5-3.el7.x86_64                             88/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : dracut-033-463.el7.x86_64                                 89/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : firewalld-filesystem-0.4.3.2-8.el7.noarch                 90/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : policycoreutils-devel-2.5-8.el7.x86_64                    91/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : policycoreutils-python-2.5-8.el7.x86_64                   92/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : openssh-server-6.6.1p1-31.el7.x86_64                      93/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libmount-2.23.2-33.el7.x86_64                             94/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:openssl-1.0.1e-60.el7.x86_64                            95/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libuuid-2.23.2-33.el7.x86_64                              96/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-util-3.21.0-2.2.el7_2.x86_64                          97/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:wpa_supplicant-2.0-20.el7.x86_64                        98/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : selinux-policy-targeted-3.13.1-102.el7.noarch             99/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libnl3-cli-3.2.28-2.el7.x86_64                           100/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-1.4.0-12.el7.x86_64                     101/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : openssh-6.6.1p1-31.el7.x86_64                            102/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : ca-certificates-2015.2.6-73.el7.noarch                   103/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : krb5-libs-1.14.1-26.el7.x86_64                           104/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : policycoreutils-2.5-8.el7.x86_64                         105/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : xfsprogs-4.5.0-8.el7.x86_64                              106/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : firewalld-0.4.3.2-8.el7.noarch                           107/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-sysinit-3.21.0-17.el7.x86_64                         108/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 32:bind-libs-lite-9.9.4-37.el7.x86_64                    109/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-3.21.0-17.el7.x86_64                                 110/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : tzdata-2016g-2.el7.noarch                                111/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-libs-1.02.135-1.el7.x86_64               112/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libnl3-3.2.28-2.el7.x86_64                               113/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:lvm2-libs-2.02.166-1.el7.x86_64                        114/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : audit-libs-python-2.6.5-3.el7.x86_64                     115/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : systemd-219-30.el7.x86_64                                116/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : glibc-2.17-157.el7.x86_64                                117/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kernel-tools-libs-3.10.0-514.el7.x86_64                  118/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rpcbind-0.2.0-38.el7.x86_64                              119/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : util-linux-2.23.2-33.el7.x86_64                          120/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : nss-tools-3.21.0-17.el7.x86_64                           121/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : grubby-8.28-18.el7.x86_64                                122/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kernel-tools-3.10.0-514.el7.x86_64                       123/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libnetfilter_conntrack-1.0.4-2.el7.x86_64                124/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : expat-2.1.0-8.el7.x86_64                                 125/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : polkit-0.112-9.el7.x86_64                                126/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 32:bind-license-9.9.4-37.el7.noarch                      127/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:dmidecode-3.0-2.el7.x86_64                             128/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 2:vim-minimal-7.4.160-1.el7.x86_64                       129/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libgudev1-219-30.el7.x86_64                              130/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : selinux-policy-3.13.1-102.el7.noarch                     131/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libgcrypt-1.5.3-12.el7_1.1.x86_64                        132/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-event-libs-1.02.135-1.el7.x86_64         133/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:lvm2-2.02.166-1.el7.x86_64                             134/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : dracut-config-rescue-033-463.el7.x86_64                  135/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : python-perf-3.10.0-514.el7.x86_64                        136/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : kpartx-0.4.9-99.el7.x86_64                               137/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : tuned-2.7.1-3.el7.noarch                                 138/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : sudo-1.8.6p7-20.el7.x86_64                               139/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : systemd-sysv-219-30.el7.x86_64                           140/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : openssh-clients-6.6.1p1-31.el7.x86_64                    141/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : glibc-common-2.17-157.el7.x86_64                         142/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libpciaccess-0.13.4-2.el7.x86_64                         143/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : initscripts-9.49.37-1.el7.x86_64                         144/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : python-firewall-0.4.3.2-8.el7.noarch                     145/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:nfs-utils-1.3.0-0.33.el7.x86_64                        146/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-tui-1.4.0-12.el7.x86_64                 147/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : dracut-network-033-463.el7.x86_64                        148/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : bash-4.2.46-20.el7_2.x86_64                              149/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : audit-2.6.5-3.el7.x86_64                                 150/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-1.02.135-1.el7.x86_64                    151/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : chrony-2.1.1-3.el7.centos.x86_64                         152/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-libnm-1.4.0-12.el7.x86_64               153/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rdma-7.3_4.7_rc2-5.el7.noarch                            154/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : systemd-libs-219-30.el7.x86_64                           155/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libblkid-2.23.2-33.el7.x86_64                            156/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 2:microcode_ctl-2.1-16.el7.x86_64                        157/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-team-1.4.0-12.el7.x86_64                158/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libsemanage-2.5-4.el7.x86_64                             159/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 7:device-mapper-event-1.02.135-1.el7.x86_64              160/161
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:NetworkManager-wifi-1.4.0-12.el7.x86_64                161/161
==> icinga2-elastic:
==> icinga2-elastic:
==> icinga2-elastic: Installed:
==> icinga2-elastic:   kernel.x86_64 0:3.10.0-514.21.2.el7
==> icinga2-elastic:
==> icinga2-elastic: Updated:
==> icinga2-elastic:   NetworkManager.x86_64 1:1.4.0-20.el7_3
==> icinga2-elastic:   NetworkManager-libnm.x86_64 1:1.4.0-20.el7_3
==> icinga2-elastic:   NetworkManager-team.x86_64 1:1.4.0-20.el7_3
==> icinga2-elastic:   NetworkManager-tui.x86_64 1:1.4.0-20.el7_3
==> icinga2-elastic:   NetworkManager-wifi.x86_64 1:1.4.0-20.el7_3
==> icinga2-elastic:   audit.x86_64 0:2.6.5-3.el7_3.1
==> icinga2-elastic:   audit-libs.x86_64 0:2.6.5-3.el7_3.1
==> icinga2-elastic:   audit-libs-python.x86_64 0:2.6.5-3.el7_3.1
==> icinga2-elastic:   bash.x86_64 0:4.2.46-21.el7_3
==> icinga2-elastic:   bind-libs-lite.x86_64 32:9.9.4-38.el7_3.3
==> icinga2-elastic:   bind-license.noarch 32:9.9.4-38.el7_3.3
==> icinga2-elastic:   ca-certificates.noarch 0:2017.2.14-70.1.el7_3
==> icinga2-elastic:   chrony.x86_64 0:2.1.1-4.el7.centos
==> icinga2-elastic:   device-mapper.x86_64 7:1.02.135-1.el7_3.4
==> icinga2-elastic:   device-mapper-event.x86_64 7:1.02.135-1.el7_3.4
==> icinga2-elastic:   device-mapper-event-libs.x86_64 7:1.02.135-1.el7_3.4
==> icinga2-elastic:   device-mapper-libs.x86_64 7:1.02.135-1.el7_3.4
==> icinga2-elastic:   dmidecode.x86_64 1:3.0-2.1.el7_3
==> icinga2-elastic:   dracut.x86_64 0:033-463.el7_3.1
==> icinga2-elastic:   dracut-config-rescue.x86_64 0:033-463.el7_3.1
==> icinga2-elastic:   dracut-network.x86_64 0:033-463.el7_3.1
==> icinga2-elastic:   expat.x86_64 0:2.1.0-10.el7_3
==> icinga2-elastic:   firewalld.noarch 0:0.4.3.2-8.1.el7_3.3
==> icinga2-elastic:   firewalld-filesystem.noarch 0:0.4.3.2-8.1.el7_3.3
==> icinga2-elastic:   glibc.x86_64 0:2.17-157.el7_3.4
==> icinga2-elastic:   glibc-common.x86_64 0:2.17-157.el7_3.4
==> icinga2-elastic:   grubby.x86_64 0:8.28-21.el7_3
==> icinga2-elastic:   initscripts.x86_64 0:9.49.37-1.el7_3.1
==> icinga2-elastic:   irqbalance.x86_64 3:1.0.7-6.el7_3.1
==> icinga2-elastic:   kernel-tools.x86_64 0:3.10.0-514.21.2.el7
==> icinga2-elastic:   kernel-tools-libs.x86_64 0:3.10.0-514.21.2.el7
==> icinga2-elastic:   kpartx.x86_64 0:0.4.9-99.el7_3.3
==> icinga2-elastic:   krb5-libs.x86_64 0:1.14.1-27.el7_3
==> icinga2-elastic:   libblkid.x86_64 0:2.23.2-33.el7_3.2
==> icinga2-elastic:   libgcrypt.x86_64 0:1.5.3-13.el7_3.1
==> icinga2-elastic:   libgudev1.x86_64 0:219-30.el7_3.9
==> icinga2-elastic:   libmount.x86_64 0:2.23.2-33.el7_3.2
==> icinga2-elastic:   libnetfilter_conntrack.x86_64 0:1.0.6-1.el7_3
==> icinga2-elastic:   libnl3.x86_64 0:3.2.28-3.el7_3
==> icinga2-elastic:   libnl3-cli.x86_64 0:3.2.28-3.el7_3
==> icinga2-elastic:   libpciaccess.x86_64 0:0.13.4-3.el7_3
==> icinga2-elastic:   libsemanage.x86_64 0:2.5-5.1.el7_3
==> icinga2-elastic:   libsemanage-python.x86_64 0:2.5-5.1.el7_3
==> icinga2-elastic:   libtirpc.x86_64 0:0.2.4-0.8.el7_3
==> icinga2-elastic:   libuuid.x86_64 0:2.23.2-33.el7_3.2
==> icinga2-elastic:   lvm2.x86_64 7:2.02.166-1.el7_3.4
==> icinga2-elastic:   lvm2-libs.x86_64 7:2.02.166-1.el7_3.4
==> icinga2-elastic:   microcode_ctl.x86_64 2:2.1-16.3.el7_3
==> icinga2-elastic:   nfs-utils.x86_64 1:1.3.0-0.33.el7_3
==> icinga2-elastic:   nspr.x86_64 0:4.13.1-1.0.el7_3
==> icinga2-elastic:   nss.x86_64 0:3.28.4-1.2.el7_3
==> icinga2-elastic:   nss-sysinit.x86_64 0:3.28.4-1.2.el7_3
==> icinga2-elastic:   nss-tools.x86_64 0:3.28.4-1.2.el7_3
==> icinga2-elastic:   nss-util.x86_64 0:3.28.4-1.0.el7_3
==> icinga2-elastic:   openssh.x86_64 0:6.6.1p1-35.el7_3
==> icinga2-elastic:   openssh-clients.x86_64 0:6.6.1p1-35.el7_3
==> icinga2-elastic:   openssh-server.x86_64 0:6.6.1p1-35.el7_3
==> icinga2-elastic:   openssl.x86_64 1:1.0.1e-60.el7_3.1
==> icinga2-elastic:   openssl-libs.x86_64 1:1.0.1e-60.el7_3.1
==> icinga2-elastic:   policycoreutils.x86_64 0:2.5-11.el7_3
==> icinga2-elastic:   policycoreutils-devel.x86_64 0:2.5-11.el7_3
==> icinga2-elastic:   policycoreutils-python.x86_64 0:2.5-11.el7_3
==> icinga2-elastic:   polkit.x86_64 0:0.112-12.el7_3
==> icinga2-elastic:   python-firewall.noarch 0:0.4.3.2-8.1.el7_3.3
==> icinga2-elastic:   python-perf.x86_64 0:3.10.0-514.21.2.el7
==> icinga2-elastic:   rdma.noarch 0:7.3_4.7_rc2-6.el7_3
==> icinga2-elastic:   rpcbind.x86_64 0:0.2.0-38.el7_3.1
==> icinga2-elastic:   selinux-policy.noarch 0:3.13.1-102.el7_3.16
==> icinga2-elastic:   selinux-policy-devel.noarch 0:3.13.1-102.el7_3.16
==> icinga2-elastic:   selinux-policy-targeted.noarch 0:3.13.1-102.el7_3.16
==> icinga2-elastic:   sudo.x86_64 0:1.8.6p7-22.el7_3
==> icinga2-elastic:   systemd.x86_64 0:219-30.el7_3.9
==> icinga2-elastic:   systemd-libs.x86_64 0:219-30.el7_3.9
==> icinga2-elastic:   systemd-sysv.x86_64 0:219-30.el7_3.9
==> icinga2-elastic:   tuned.noarch 0:2.7.1-3.el7_3.2
==> icinga2-elastic:   tzdata.noarch 0:2017b-1.el7
==> icinga2-elastic:   util-linux.x86_64 0:2.23.2-33.el7_3.2
==> icinga2-elastic:   vim-minimal.x86_64 2:7.4.160-1.el7_3.1
==> icinga2-elastic:   wpa_supplicant.x86_64 1:2.0-21.el7_3
==> icinga2-elastic:   xfsprogs.x86_64 0:4.5.0-9.el7_3
==> icinga2-elastic: Complete!
==> icinga2-elastic: Installing Puppet 3 release...
==> icinga2-elastic: Loaded plugins: fastestmirror
==> icinga2-elastic: Examining /var/tmp/yum-root-jdxVGH/puppetlabs-release-el-7.noarch.rpm: puppetlabs-release-22.0-2.noarch
==> icinga2-elastic: Marking /var/tmp/yum-root-jdxVGH/puppetlabs-release-el-7.noarch.rpm to be installed
==> icinga2-elastic: Resolving Dependencies
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package puppetlabs-release.noarch 0:22.0-2 will be installed
==> icinga2-elastic: --> Finished Dependency Resolution
==> icinga2-elastic:
==> icinga2-elastic: Dependencies Resolved
==> icinga2-elastic:
==> icinga2-elastic: ================================================================================
==> icinga2-elastic:  Package              Arch     Version  Repository                         Size
==> icinga2-elastic: ================================================================================
==> icinga2-elastic: Installing:
==> icinga2-elastic:  puppetlabs-release   noarch   22.0-2   /puppetlabs-release-el-7.noarch    13 k
==> icinga2-elastic:
==> icinga2-elastic: Transaction Summary
==> icinga2-elastic: ================================================================================
==> icinga2-elastic: Install  1 Package
==> icinga2-elastic:
==> icinga2-elastic: Total size: 13 k
==> icinga2-elastic: Installed size: 13 k
==> icinga2-elastic: Downloading packages:
==> icinga2-elastic: Running transaction check
==> icinga2-elastic: Running transaction test
==> icinga2-elastic: Transaction test succeeded
==> icinga2-elastic: Running transaction
==> icinga2-elastic:   Installing : puppetlabs-release-22.0-2.noarch                             1/1
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : puppetlabs-release-22.0-2.noarch                             1/1
==> icinga2-elastic:
==> icinga2-elastic:
==> icinga2-elastic: Installed:
==> icinga2-elastic:   puppetlabs-release.noarch 0:22.0-2
==> icinga2-elastic:
==> icinga2-elastic: Complete!
==> icinga2-elastic: Installing puppet...
==> icinga2-elastic: Loaded plugins: fastestmirror
==> icinga2-elastic: Loading mirror speeds from cached hostfile
==> icinga2-elastic:  * base: ftp.nluug.nl
==> icinga2-elastic:  * extras: ftp.tudelft.nl
==> icinga2-elastic:  * updates: centos.ams.host-engine.com
==> icinga2-elastic: Resolving Dependencies
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package puppet.noarch 0:3.8.7-1.el7 will be installed
==> icinga2-elastic: --> Processing Dependency: ruby >= 1.8.7 for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: hiera >= 1.0.0 for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: facter >= 1:1.7.0 for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: ruby >= 1.8 for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: ruby-shadow for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: ruby(selinux) for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: ruby-augeas for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: /usr/bin/ruby for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Processing Dependency: rubygem-json for package: puppet-3.8.7-1.el7.noarch
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package facter.x86_64 1:2.4.6-1.el7 will be installed
==> icinga2-elastic: ---> Package hiera.noarch 0:1.3.4-1.el7 will be installed
==> icinga2-elastic: ---> Package libselinux-ruby.x86_64 0:2.5-6.el7 will be installed
==> icinga2-elastic: ---> Package ruby.x86_64 0:2.0.0.648-29.el7 will be installed
==> icinga2-elastic: --> Processing Dependency: ruby-libs(x86-64) = 2.0.0.648-29.el7 for package: ruby-2.0.0.648-29.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: rubygem(bigdecimal) >= 1.2.0 for package: ruby-2.0.0.648-29.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: ruby(rubygems) >= 2.0.14.1 for package: ruby-2.0.0.648-29.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libruby.so.2.0()(64bit) for package: ruby-2.0.0.648-29.el7.x86_64
==> icinga2-elastic: ---> Package ruby-augeas.x86_64 0:0.4.1-3.el7 will be installed
==> icinga2-elastic: --> Processing Dependency: augeas-libs >= 0.8.0 for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libaugeas.so.0(AUGEAS_0.12.0)(64bit) for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libaugeas.so.0(AUGEAS_0.1.0)(64bit) for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libaugeas.so.0(AUGEAS_0.10.0)(64bit) for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libaugeas.so.0(AUGEAS_0.8.0)(64bit) for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libaugeas.so.0(AUGEAS_0.11.0)(64bit) for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: --> Processing Dependency: libaugeas.so.0()(64bit) for package: ruby-augeas-0.4.1-3.el7.x86_64
==> icinga2-elastic: ---> Package ruby-shadow.x86_64 1:2.2.0-2.el7 will be installed
==> icinga2-elastic: ---> Package rubygem-json.x86_64 0:1.7.7-29.el7 will be installed
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package augeas-libs.x86_64 0:1.4.0-2.el7 will be installed
==> icinga2-elastic: ---> Package ruby-libs.x86_64 0:2.0.0.648-29.el7 will be installed
==> icinga2-elastic: ---> Package rubygem-bigdecimal.x86_64 0:1.2.0-29.el7 will be installed
==> icinga2-elastic: ---> Package rubygems.noarch 0:2.0.14.1-29.el7 will be installed
==> icinga2-elastic: --> Processing Dependency: rubygem(rdoc) >= 4.0.0 for package: rubygems-2.0.14.1-29.el7.noarch
==> icinga2-elastic: --> Processing Dependency: rubygem(psych) >= 2.0.0 for package: rubygems-2.0.14.1-29.el7.noarch
==> icinga2-elastic: --> Processing Dependency: rubygem(io-console) >= 0.4.2 for package: rubygems-2.0.14.1-29.el7.noarch
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package rubygem-io-console.x86_64 0:0.4.2-29.el7 will be installed
==> icinga2-elastic: ---> Package rubygem-psych.x86_64 0:2.0.0-29.el7 will be installed
==> icinga2-elastic: --> Processing Dependency: libyaml-0.so.2()(64bit) for package: rubygem-psych-2.0.0-29.el7.x86_64
==> icinga2-elastic: ---> Package rubygem-rdoc.noarch 0:4.0.0-29.el7 will be installed
==> icinga2-elastic: --> Processing Dependency: ruby(irb) = 2.0.0.648 for package: rubygem-rdoc-4.0.0-29.el7.noarch
==> icinga2-elastic: --> Running transaction check
==> icinga2-elastic: ---> Package libyaml.x86_64 0:0.1.4-11.el7_0 will be installed
==> icinga2-elastic: ---> Package ruby-irb.noarch 0:2.0.0.648-29.el7 will be installed
==> icinga2-elastic: --> Finished Dependency Resolution
==> icinga2-elastic:
==> icinga2-elastic: Dependencies Resolved
==> icinga2-elastic:
==> icinga2-elastic: ================================================================================
==> icinga2-elastic:  Package              Arch     Version              Repository             Size
==> icinga2-elastic: ================================================================================
==> icinga2-elastic: Installing:
==> icinga2-elastic:  puppet               noarch   3.8.7-1.el7          puppetlabs-products   1.5 M
==> icinga2-elastic: Installing for dependencies:
==> icinga2-elastic:  augeas-libs          x86_64   1.4.0-2.el7          base                  355 k
==> icinga2-elastic:  facter               x86_64   1:2.4.6-1.el7        puppetlabs-products    98 k
==> icinga2-elastic:  hiera                noarch   1.3.4-1.el7          puppetlabs-products    23 k
==> icinga2-elastic:  libselinux-ruby      x86_64   2.5-6.el7            base                  120 k
==> icinga2-elastic:  libyaml              x86_64   0.1.4-11.el7_0       base                   55 k
==> icinga2-elastic:  ruby                 x86_64   2.0.0.648-29.el7     base                   68 k
==> icinga2-elastic:  ruby-augeas          x86_64   0.4.1-3.el7          puppetlabs-deps        22 k
==> icinga2-elastic:  ruby-irb             noarch   2.0.0.648-29.el7     base                   89 k
==> icinga2-elastic:  ruby-libs            x86_64   2.0.0.648-29.el7     base                  2.8 M
==> icinga2-elastic:  ruby-shadow          x86_64   1:2.2.0-2.el7        puppetlabs-deps        14 k
==> icinga2-elastic:  rubygem-bigdecimal   x86_64   1.2.0-29.el7         base                   80 k
==> icinga2-elastic:  rubygem-io-console   x86_64   0.4.2-29.el7         base                   51 k
==> icinga2-elastic:  rubygem-json         x86_64   1.7.7-29.el7         base                   76 k
==> icinga2-elastic:  rubygem-psych        x86_64   2.0.0-29.el7         base                   78 k
==> icinga2-elastic:  rubygem-rdoc         noarch   4.0.0-29.el7         base                  319 k
==> icinga2-elastic:  rubygems             noarch   2.0.14.1-29.el7      base                  216 k
==> icinga2-elastic:
==> icinga2-elastic: Transaction Summary
==> icinga2-elastic: ================================================================================
==> icinga2-elastic: Install  1 Package (+16 Dependent packages)
==> icinga2-elastic:
==> icinga2-elastic: Total download size: 6.0 M
==> icinga2-elastic: Installed size: 16 M
==> icinga2-elastic: Downloading packages:
==> icinga2-elastic: Public key for hiera-1.3.4-1.el7.noarch.rpm is not installed
==> icinga2-elastic: warning: /var/cache/yum/x86_64/7/puppetlabs-products/packages/hiera-1.3.4-1.el7.noarch.rpm: Header V4 RSA/SHA512 Signature, key ID 4bd6ec30: NOKEY
==> icinga2-elastic: Public key for ruby-augeas-0.4.1-3.el7.x86_64.rpm is not installed
==> icinga2-elastic: --------------------------------------------------------------------------------
==> icinga2-elastic: Total                                              4.2 MB/s | 6.0 MB  00:01
==> icinga2-elastic: Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs
==> icinga2-elastic: Importing GPG key 0x4BD6EC30:
==> icinga2-elastic:  Userid     : "Puppet Labs Release Key (Puppet Labs Release Key) <[email protected]>"
==> icinga2-elastic:  Fingerprint: 47b3 20eb 4c7c 375a a9da e1a0 1054 b7a2 4bd6 ec30
==> icinga2-elastic:  Package    : puppetlabs-release-22.0-2.noarch (installed)
==> icinga2-elastic:  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-puppetlabs
==> icinga2-elastic: Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puppet
==> icinga2-elastic: Importing GPG key 0xEF8D349F:
==> icinga2-elastic:  Userid     : "Puppet, Inc. Release Key (Puppet, Inc. Release Key) <[email protected]>"
==> icinga2-elastic:  Fingerprint: 6f6b 1550 9cf8 e59e 6e46 9f32 7f43 8280 ef8d 349f
==> icinga2-elastic:  Package    : puppetlabs-release-22.0-2.noarch (installed)
==> icinga2-elastic:  From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-puppet
==> icinga2-elastic: Running transaction check
==> icinga2-elastic: Running transaction test
==> icinga2-elastic: Transaction test succeeded
==> icinga2-elastic: Running transaction
==> icinga2-elastic:   Installing : ruby-libs-2.0.0.648-29.el7.x86_64                           1/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : augeas-libs-1.4.0-2.el7.x86_64                              2/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : ruby-augeas-0.4.1-3.el7.x86_64                              3/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : libselinux-ruby-2.5-6.el7.x86_64                            4/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : libyaml-0.1.4-11.el7_0.x86_64                               5/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : rubygem-bigdecimal-1.2.0-29.el7.x86_64                      6/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : rubygem-json-1.7.7-29.el7.x86_64                            7/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : rubygem-io-console-0.4.2-29.el7.x86_64                      8/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : rubygem-rdoc-4.0.0-29.el7.noarch                            9/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : ruby-irb-2.0.0.648-29.el7.noarch                           10/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : ruby-2.0.0.648-29.el7.x86_64                               11/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : rubygem-psych-2.0.0-29.el7.x86_64                          12/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : rubygems-2.0.14.1-29.el7.noarch                            13/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : 1:facter-2.4.6-1.el7.x86_64                                14/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : 1:ruby-shadow-2.2.0-2.el7.x86_64                           15/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : hiera-1.3.4-1.el7.noarch                                   16/17
==> icinga2-elastic:
==> icinga2-elastic:   Installing : puppet-3.8.7-1.el7.noarch                                  17/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rubygems-2.0.14.1-29.el7.noarch                             1/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libyaml-0.1.4-11.el7_0.x86_64                               2/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : ruby-libs-2.0.0.648-29.el7.x86_64                           3/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:facter-2.4.6-1.el7.x86_64                                 4/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rubygem-rdoc-4.0.0-29.el7.noarch                            5/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : ruby-augeas-0.4.1-3.el7.x86_64                              6/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : 1:ruby-shadow-2.2.0-2.el7.x86_64                            7/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : ruby-irb-2.0.0.648-29.el7.noarch                            8/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : hiera-1.3.4-1.el7.noarch                                    9/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rubygem-bigdecimal-1.2.0-29.el7.x86_64                     10/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : libselinux-ruby-2.5-6.el7.x86_64                           11/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rubygem-json-1.7.7-29.el7.x86_64                           12/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rubygem-io-console-0.4.2-29.el7.x86_64                     13/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : puppet-3.8.7-1.el7.noarch                                  14/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : ruby-2.0.0.648-29.el7.x86_64                               15/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : augeas-libs-1.4.0-2.el7.x86_64                             16/17
==> icinga2-elastic:
==> icinga2-elastic:   Verifying  : rubygem-psych-2.0.0-29.el7.x86_64                          17/17
==> icinga2-elastic:
==> icinga2-elastic:
==> icinga2-elastic: Installed:
==> icinga2-elastic:   puppet.noarch 0:3.8.7-1.el7
==> icinga2-elastic:
==> icinga2-elastic: Dependency Installed:
==> icinga2-elastic:   augeas-libs.x86_64 0:1.4.0-2.el7
==> icinga2-elastic:   facter.x86_64 1:2.4.6-1.el7
==> icinga2-elastic:   hiera.noarch 0:1.3.4-1.el7
==> icinga2-elastic:   libselinux-ruby.x86_64 0:2.5-6.el7
==> icinga2-elastic:   libyaml.x86_64 0:0.1.4-11.el7_0
==> icinga2-elastic:   ruby.x86_64 0:2.0.0.648-29.el7
==> icinga2-elastic:   ruby-augeas.x86_64 0:0.4.1-3.el7
==> icinga2-elastic:   ruby-irb.noarch 0:2.0.0.648-29.el7
==> icinga2-elastic:   ruby-libs.x86_64 0:2.0.0.648-29.el7
==> icinga2-elastic:   ruby-shadow.x86_64 1:2.2.0-2.el7
==> icinga2-elastic:   rubygem-bigdecimal.x86_64 0:1.2.0-29.el7
==> icinga2-elastic:   rubygem-io-console.x86_64 0:0.4.2-29.el7
==> icinga2-elastic:   rubygem-json.x86_64 0:1.7.7-29.el7
==> icinga2-elastic:   rubygem-psych.x86_64 0:2.0.0-29.el7
==> icinga2-elastic:   rubygem-rdoc.noarch 0:4.0.0-29.el7
==> icinga2-elastic:   rubygems.noarch 0:2.0.14.1-29.el7
==> icinga2-elastic: Complete!
==> icinga2-elastic: Running provisioner: puppet...
==> icinga2-elastic: Running Puppet with default.pp...
==> icinga2-elastic: Notice: Scope(Class[Selinux::Config]): A reboot is required to fully disable SELinux. SELinux will operate in Permissive mode until a reboot
==> icinga2-elastic: Notice: Compiled catalog for icinga2-elastic in environment production in 9.42 seconds
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/security/limits.d/99-elasticsearch.conf]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/motd]/content: content changed '{md5}d41d8cd98f00b204e9800998ecf8427e' to '{md5}137c422323d718cafa8ed33e6c0d7605'
==> icinga2-elastic: Notice: /Stage[main]/Php::Common/Package[php-common]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Vim/File[/etc/vimrc]/ensure: defined content as '{md5}09fe98137e2f6b389ec4c96502c20435'
==> icinga2-elastic: Notice: /Stage[main]/Filebeat::Repo/Yumrepo[beats]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Php::Ini[/etc/php.ini]/File[/etc/php.ini]/content: content changed '{md5}7542ec448801b7cca67b7100ff233a52' to '{md5}9ca4b433d0eaadf0f7e0758d76ba7c23'
==> icinga2-elastic: Notice: /Stage[main]/Php::Cli/Package[php-cli]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Yum::Install[icingabeat]/Exec[yum-install-icingabeat]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingabeat/icingabeat.yml]/content: content changed '{md5}e6edf97468d1b38c87db493d1a669e01' to '{md5}f810ab4c8cfc882978ecd1a6f8cf24ad'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingabeat/icingabeat.yml]/mode: mode changed '0600' to '0644'
==> icinga2-elastic: Notice: /Stage[main]/Php::Mod_php5/Package[php]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Vim/Package[vim-enhanced]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Config/File[mysql-config-file]/ensure: defined content as '{md5}4b16ed3375eaa96a2bc1b7aa00c5dd46'
==> icinga2-elastic: Notice: /Stage[main]/Kibana::Install/Yumrepo[kibana]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Kibana::Install/Exec[kibana_yumrepo_yum_clean]: Triggered 'refresh' from 1 events
==> icinga2-elastic: Notice: /Stage[main]/Kibana::Install/Package[kibana]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Install/Package[mysql-server]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Epel/File[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7]/ensure: defined content as '{md5}58fa8ae27c89f37b08429f04fd4a88cc'
==> icinga2-elastic: Notice: /Stage[main]/Epel/Epel::Rpm_gpg_key[EPEL-7]/Exec[import-EPEL-7]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Epel/Yumrepo[epel-testing-debuginfo]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Epel/Yumrepo[epel-source]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Epel/Yumrepo[epel]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Epel/Yumrepo[epel-testing-source]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Epel/Yumrepo[epel-debuginfo]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Epel/Yumrepo[epel-testing]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Mime/Apache::Mod[mime]/File[mime.load]/ensure: defined content as '{md5}e36257b9efab01459141d423cae57c7c'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[expires]/File[expires.load]/ensure: defined content as '{md5}f0825bad1e470de86ffabeb86dcc5d95'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Dav/Apache::Mod[dav]/File[dav.load]/ensure: defined content as '{md5}588e496251838c4840c14b28b5aa7881'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authz_owner]/File[authz_owner.load]/ensure: defined content as '{md5}f30a9be1016df87f195449d9e02d1857'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authz_groupfile]/File[authz_groupfile.load]/ensure: defined content as '{md5}ae005a36b3ac8c20af36c434561c8a75'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authn_dbm]/File[authn_dbm.load]/ensure: defined content as '{md5}90ee8f8ef1a017cacadfda4225e10651'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Authn_core/Apache::Mod[authn_core]/File[authn_core.load]/ensure: defined content as '{md5}704d6e8b02b0eca0eba4083960d16c52'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Authz_user/Apache::Mod[authz_user]/File[authz_user.load]/ensure: defined content as '{md5}63594303ee808423679b1ea13dd5a784'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[log_config]/File[log_config.load]/ensure: defined content as '{md5}785d35cb285e190d589163b45263ca89'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[logio]/File[logio.load]/ensure: defined content as '{md5}084533c7a44e9129d0e6df952e2472b6'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Ssl/Apache::Mod[socache_shmcb]/File[socache_shmcb.load]/ensure: defined content as '{md5}ab31a6ea611785f74851b578572e4157'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Mime/File[mime.conf]/ensure: defined content as '{md5}9da85e58f3bd6c780ce76db603b7f028'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[access_compat]/File[access_compat.load]/ensure: defined content as '{md5}d5feb88bec4570e2dbc41cce7e0de003'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Version/Apache::Mod[version]/File[version.load]/ensure: defined content as '{md5}1c9243de22ace4dc8266442c48ae0c92'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Setenvif/File[setenvif.conf]/ensure: defined content as '{md5}c7ede4173da1915b7ec088201f030c28'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Actions/Apache::Mod[actions]/File[actions.load]/ensure: defined content as '{md5}599866dfaf734f60f7e2d41ee8235515'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Deflate/File[deflate.conf]/ensure: defined content as '{md5}a045d750d819b1e9dae3fbfb3f20edd5'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authz_core]/File[authz_core.load]/ensure: defined content as '{md5}39942569bff2abdb259f9a347c7246bc'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Negotiation/File[negotiation.conf]/ensure: defined content as '{md5}47284b5580b986a6ba32580b6ffb9fd7'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Alias/Apache::Mod[alias]/File[alias.load]/ensure: defined content as '{md5}3cf2fa309ccae4c29a4b875d0894cd79'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[env]/File[env.load]/ensure: defined content as '{md5}d74184d40d0ee24ba02626a188ee7e1a'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Negotiation/Apache::Mod[negotiation]/File[negotiation.load]/ensure: defined content as '{md5}d262ee6a5f20d9dd7f87770638dc2ccd'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authz_dbm]/File[authz_dbm.load]/ensure: defined content as '{md5}c1363277984d22f99b70f7dce8753b60'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[usertrack]/File[usertrack.load]/ensure: defined content as '{md5}e95fbbf030fabec98b948f8dc217775c'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Prefork/File[/etc/httpd/conf.modules.d/prefork.conf]/ensure: defined content as '{md5}109c4f51dac10fc1b39373855e566d01'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Vhost_alias/Apache::Mod[vhost_alias]/File[vhost_alias.load]/ensure: defined content as '{md5}eca907865997d50d5130497665c3f82e'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Setenvif/Apache::Mod[setenvif]/File[setenvif.load]/ensure: defined content as '{md5}ec6c99f7cc8e35bdbcf8028f652c9f6d'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[unixd]/File[unixd.load]/ensure: defined content as '{md5}0e8468ecc1265f8947b8725f4d1be9c0'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[auth_basic]/File[auth_basic.load]/ensure: defined content as '{md5}494bcf4b843f7908675d663d8dc1bdc8'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Prefork/Apache::Mpm[prefork]/File[/etc/httpd/conf.modules.d/prefork.load]/ensure: defined content as '{md5}157529aafcf03fa491bc924103e4608e'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Authn_file/Apache::Mod[authn_file]/File[authn_file.load]/ensure: defined content as '{md5}d41656680003d7b890267bb73621c60b'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Ext_filter/Apache::Mod[ext_filter]/File[ext_filter.load]/ensure: defined content as '{md5}76d5e0ac3411a4be57ac33ebe2e52ac8'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Speling/Apache::Mod[speling]/File[speling.load]/ensure: defined content as '{md5}f82e9e6b871a276c324c9eeffcec8a61'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Dir/File[dir.conf]/ensure: defined content as '{md5}c741d8ea840e6eb999d739eed47c69d7'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Dir/Apache::Mod[dir]/File[dir.load]/ensure: defined content as '{md5}1bfb1c2a46d7351fc9eb47c659dee068'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Dav_fs/Apache::Mod[dav_fs]/File[dav_fs.load]/ensure: defined content as '{md5}2996277c73b1cd684a9a3111c355e0d3'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[include]/File[include.load]/ensure: defined content as '{md5}88095a914eedc3c2c184dd5d74c3954c'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[systemd]/File[systemd.load]/ensure: defined content as '{md5}26e5d44aae258b3e9d821cbbbd3e2826'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Alias/File[alias.conf]/ensure: defined content as '{md5}983e865be85f5e0daaed7433db82995e'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Suexec/Apache::Mod[suexec]/File[suexec.load]/ensure: defined content as '{md5}c7d5c61c534ba423a79b0ae78ff9be35'
==> icinga2-elastic: Notice: /Stage[main]/Main/Apache::Vhost[vagrant-demo.icinga.com]/Concat[5-vagrant-demo.icinga.com.conf]/File[/etc/httpd/conf.d/5-vagrant-demo.icinga.com.conf]/ensure: defined content as '{md5}61e1fa7f17fd03dc14759d3f81dbb312'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[substitute]/File[substitute.load]/ensure: defined content as '{md5}8077c34a71afcf41c8fc644830935915'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Php/Apache::Mod[php5]/File[php5.load]/ensure: defined content as '{md5}5aabed26d29e38135b5157acff80a2a6'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Php/File[php5.conf]/ensure: defined content as '{md5}24420bffd2939b1fe3ff0ca36dbad419'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[auth_digest]/File[auth_digest.load]/ensure: defined content as '{md5}df9e85f8da0b239fe8e698ae7ead4f60'
==> icinga2-elastic: Notice: /Stage[main]/Icinga_rpm/Yumrepo[ICINGA-snapshot]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icinga2_ido_mysql/Package[icinga2-ido-mysql]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Exec[enable-icinga2-api]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/zones.conf]/content: content changed '{md5}4d4028e9660ccd461369f5b0a42475e6' to '{md5}9779d3e7d4be61d2841d241fe3636d12'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/zones.conf]/mode: mode changed '0640' to '0644'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/hosts.conf]/content: content changed '{md5}feee6150c7c388f930ff3d51a1d584d3' to '{md5}0c65a7b1dca6df0b9959c587cb244b4a'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/hosts.conf]/mode: mode changed '0640' to '0644'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/additional_services.conf]/ensure: defined content as '{md5}0d17ef8e237dbc4160b5cc83126b236f'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/Package[php-ZendFramework]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icinga2/Package[icinga2-doc]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/icinga2.conf]/content: content changed '{md5}35da5eaf4658bec1c7a592e34e2f1f20' to '{md5}252e8c4229cb166a0ccebb8229d9ffd6'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/icinga2.conf]/mode: mode changed '0640' to '0644'
==> icinga2-elastic: Notice: /Stage[main]/Icinga2/Package[vim-icinga2]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icinga2/Package[icinga2-debuginfo]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/api-users.conf]/content: content changed '{md5}a70ca094f00d4dde48908a00b22e00b9' to '{md5}f6ada9b6bdee1fd847d294cd01f4bf87'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/api-users.conf]/owner: owner changed 'root' to 'icinga'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icinga2/conf.d/api-users.conf]/group: group changed 'root' to 'icinga'
==> icinga2-elastic: Notice: /File[/etc/icinga2/conf.d/api-users.conf]/seluser: seluser changed 'unconfined_u' to 'system_u'
==> icinga2-elastic: Notice: /Stage[main]/Icinga2/File[/var/spool/icinga2/perfdata]/mode: mode changed '0770' to '0775'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Ssl/Apache::Mod[ssl]/Package[mod_ssl]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Ssl/File[ssl.conf]/ensure: defined content as '{md5}8884ea33793365e0784cfd43be72464e'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Ssl/Apache::Mod[ssl]/File[ssl.load]/ensure: defined content as '{md5}e282ac9f82fe5538692a4de3616fb695'
==> icinga2-elastic: Notice: /Stage[main]/Main/Service[icingabeat]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: /Stage[main]/Java/Package[java]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Deflate/Apache::Mod[deflate]/File[deflate.load]/ensure: defined content as '{md5}2d1a1afcae0c70557251829a8586eeaf'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Autoindex/Apache::Mod[autoindex]/File[autoindex.load]/ensure: defined content as '{md5}515cdf5b573e961a60d2931d39248648'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Repo/Yumrepo[elasticsearch]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Repo/Exec[elasticsearch_yumrepo_yum_clean]: Triggered 'refresh' from 1 events
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Package/Package[elasticsearch]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Package/Exec[remove_plugin_dir]: Triggered 'refresh' from 1 events
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Package/Exec[create_package_dir_elasticsearch]/returns: executed successfully
==> icinga2-elastic: Notice: /File[/opt/elasticsearch/swdl]/seluser: seluser changed 'unconfined_u' to 'system_u'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/init.d/elasticsearch]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/var/log/elasticsearch]/mode: mode changed '0750' to '0755'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/usr/share/elasticsearch]/owner: owner changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/usr/share/elasticsearch]/group: group changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/usr/share/elasticsearch/templates_import]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/usr/share/elasticsearch/scripts]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/usr/share/elasticsearch/plugins]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/Augeas[/etc/sysconfig/elasticsearch]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/Exec[systemctl mask elasticsearch.service]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authn_anon]/File[authn_anon.load]/ensure: defined content as '{md5}bf57b94b5aec35476fc2a2dc3861f132'
==> icinga2-elastic: Notice: /Stage[main]/Selinux::Config/Exec[change-selinux-status-to-disabled]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Selinux::Config/File_line[set-selinux-config-to-disabled]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Autoindex/File[autoindex.conf]/ensure: defined content as '{md5}2421a3c6df32c7e38c2a7a22afdf5728'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Cache/Apache::Mod[cache]/File[cache.load]/ensure: defined content as '{md5}01e4d392225b518a65b0f7d6c4e21d29'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/Package[php-ZendFramework-Db-Adapter-Pdo-Mysql]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Rewrite/Apache::Mod[rewrite]/File[rewrite.load]/ensure: defined content as '{md5}26e2683352fc1599f29573ff0d934e79'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Default_mods/Apache::Mod[authz_host]/File[authz_host.load]/ensure: defined content as '{md5}d1045f54d2798499ca0f030ca0eef920'
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[tree]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[git]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/Package[icingacli]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[htop]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[screen]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[rlwrap]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[gdb]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[mailx]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Monitoring_plugins/Package[nagios-plugins-all]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Package[unzip]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Archive[/tmp/icingabeat-dashboards.zip]/ensure: download archive from https://github.com/Icinga/icingabeat/releases/download/v1.1.0/icingabeat-dashboards-1.1.0.zip to /tmp/icingabeat-dashboards.zip and extracted in /tmp with cleanup
==> icinga2-elastic: Notice: /Stage[main]/Kibana::Config/File[/etc/kibana/kibana.yml]/content: content changed '{md5}d0a875dc00f4cec08bce7bc91dd62fd2' to '{md5}387b8e1444f339bf4baba2897d99eff0'
==> icinga2-elastic: Notice: /Stage[main]/Kibana::Service/Service[kibana]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Filter/Apache::Mod[filter]/File[filter.load]/ensure: defined content as '{md5}66a1e2064a140c3e7dca7ac33877700e'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/elasticsearch]/owner: owner changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/elasticsearch]/mode: mode changed '0750' to '0755'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/elasticsearch/elasticsearch.yml]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/elasticsearch/jvm.options]/content: content changed '{md5}451ddbaacd4facb76859208671240121' to '{md5}168c830620e205962f91647a7c97a9e1'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/elasticsearch/jvm.options]/owner: owner changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /Stage[main]/Elasticsearch::Config/File[/etc/elasticsearch/log4j2.properties]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/Package[icingaweb2]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/config.ini]/ensure: defined content as '{md5}d658aa3573d2b1d7e307cf22a0daec24'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/dashboards]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/resources.ini]/ensure: defined content as '{md5}a2b82a33a3bd0580949dc18098cf183b'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/authentication.ini]/ensure: defined content as '{md5}cfbd25dcebb3588710ebd0932106dd0e'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/preferences]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/preferences/icingaadmin]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/preferences/icingaadmin/menu.ini]/ensure: defined content as '{md5}2f342bb566eab38784c976b1dd321a99'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/usr/share/icingaweb2/modules/icinga2]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/usr/share/icingaweb2/modules/icinga2/doc]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/modules/monitoring]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/modules/monitoring/backends.ini]/ensure: defined content as '{md5}624fab9cdad6d31a1e6d7774cda3aff2'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/modules/monitoring/commandtransports.ini]/ensure: defined content as '{md5}949be812fb0ec7ff6fd828da738b3327'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/dashboards/icingaadmin]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/dashboards/icingaadmin/dashboard.ini]/ensure: defined content as '{md5}2083ab0cf82d0fca7b069d12cb6cb82d'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/roles.ini]/ensure: defined content as '{md5}c99d169be6d96719502420ed4e728b72'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/modules/monitoring/config.ini]/ensure: defined content as '{md5}5a6c9154b2eb6b066b1c9323533577ce'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/File[/etc/icingaweb2/enabledModules]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/File[/etc/icingaweb2/enabledModules/icinga2]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/Icingaweb2::Module[doc]/File[/etc/icingaweb2/enabledModules/doc]/ensure: created
==> icinga2-elastic: 170621 10:22:11 [Note] /usr/libexec/mysqld (mysqld 5.5.52-MariaDB) starting as process 6477 ...
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Installdb/Mysql_datadir[/var/lib/mysql]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Service/Service[mysqld]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2_internal_db_mysql/Exec[create-mysql-icingaweb2-db]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2_internal_db_mysql/Exec[populate-icingaweb2-mysql-db]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Root_password/Mysql_user[root@localhost]/password_hash: defined 'password_hash' as '*EBB513FFF4BC1B4AFF5229D79B6F11D94A6B77B6'
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Root_password/File[/root/.my.cnf]/ensure: defined content as '{md5}d7b82431edd099cd26c4d2a7be1a3b36'
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Account_security/Mysql_user[root@icinga2-elastic]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Account_security/Mysql_database[test]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Icinga2_ido_mysql/Exec[create-mysql-icinga2-ido-db]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Icinga2_ido_mysql/Exec[populate-icinga2-ido-mysql-db]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Icinga2/Service[icinga2]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Account_security/Mysql_user[root@::1]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Account_security/Mysql_user[@icinga2-elastic]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Account_security/Mysql_user[@localhost]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Mysql::Server::Account_security/Mysql_user[[email protected]]/ensure: removed
==> icinga2-elastic: Notice: /Stage[main]/Main/User[vagrant]/groups: groups changed 'vagrant' to 'icinga,icingacmd,vagrant'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Mime_magic/File[mime_magic.conf]/ensure: defined content as '{md5}b258529b332429e2ff8344f726a95457'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Mime_magic/Apache::Mod[mime_magic]/File[mime_magic.load]/ensure: defined content as '{md5}cb8670bb2fb352aac7ebf3a85d52094c'
==> icinga2-elastic: Notice: /Stage[main]/Icingaweb2/Icingaweb2::Module[monitoring]/File[/etc/icingaweb2/enabledModules/monitoring]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Exec[mkdir_logdir_elasticsearch_elastic-es]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/File[/etc/elasticsearch/elastic-es]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/File[/etc/elasticsearch/elastic-es/scripts]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/File[/etc/elasticsearch/elastic-es/log4j2.properties]/ensure: defined content as '{md5}8f5d97f071e4621ece069ddb35d43f7d'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Exec[mkdir_datadir_elasticsearch_elastic-es]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/File[/etc/elasticsearch/elastic-es/logging.yml]/ensure: defined content as '{md5}2a8b82234b9df1c320338c4b8217b5f3'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/File[/var/lib/elasticsearch/elastic-es]/owner: owner changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /File[/var/lib/elasticsearch/elastic-es]/seluser: seluser changed 'unconfined_u' to 'system_u'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/File[/var/log/elasticsearch/elastic-es]/owner: owner changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /File[/var/log/elasticsearch/elastic-es]/seluser: seluser changed 'unconfined_u' to 'system_u'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Elasticsearch::Service[elastic-es]/Elasticsearch::Service::Systemd[elastic-es]/Elasticsearch_service_file[/lib/systemd/system/elasticsearch-elastic-es.service]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Elasticsearch::Service[elastic-es]/Elasticsearch::Service::Systemd[elastic-es]/Augeas[defaults_elastic-es]/returns: executed successfully
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Elasticsearch::Service[elastic-es]/Elasticsearch::Service::Systemd[elastic-es]/File[/lib/systemd/system/elasticsearch-elastic-es.service]/owner: owner changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Elasticsearch::Service[elastic-es]/Elasticsearch::Service::Systemd[elastic-es]/File[/lib/systemd/system/elasticsearch-elastic-es.service]/group: group changed 'root' to 'elasticsearch'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Elasticsearch::Service[elastic-es]/Elasticsearch::Service::Systemd[elastic-es]/Exec[systemd_reload_elastic-es]: Triggered 'refresh' from 4 events
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Elasticsearch::Service[elastic-es]/Elasticsearch::Service::Systemd[elastic-es]/Service[elasticsearch-instance-elastic-es]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: /Stage[main]/Php::Mod_php5/File[/etc/httpd/conf.d/php.conf]/content: content changed '{md5}99e38fbe7fa8dd9066f79cfbe9aaa18d' to '{md5}9f8788e6315fc8b275862031eb64be64'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Dav_fs/File[dav_fs.conf]/ensure: defined content as '{md5}899a57534f3d84efa81887ec93c90c9b'
==> icinga2-elastic: Notice: /Stage[main]/Main/Apache::Vhost[vagrant-demo.icinga.com-ssl]/Concat[5-vagrant-demo.icinga.com-ssl.conf]/File[/etc/httpd/conf.d/5-vagrant-demo.icinga.com-ssl.conf]/ensure: defined content as '{md5}a8b12f2cdfc1016b457bde630321d40e'
==> icinga2-elastic: Notice: /Stage[main]/Main/Elasticsearch::Instance[elastic-es]/Datacat[/etc/elasticsearch/elastic-es/elasticsearch.yml]/File[/etc/elasticsearch/elastic-es/elasticsearch.yml]/ensure: defined content as '{md5}8e2d87f537f8a49b934e997a786541c7'
==> icinga2-elastic: Notice: /Stage[main]/Filebeat::Install::Linux/Package[filebeat]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Filebeat::Config/File[filebeat.yml]/content: content changed '{md5}582eb1601bde332db2d09d2ee2d8286b' to '{md5}0653dcc3cac62a3eff7d79cb0a301092'
==> icinga2-elastic: Notice: /Stage[main]/Filebeat::Config/File[filebeat.yml]/mode: mode changed '0600' to '0644'
==> icinga2-elastic: Notice: /Stage[main]/Filebeat::Config/File[filebeat-config-dir]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Filebeat::Prospector[icinga2logs]/File[filebeat-icinga2logs]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Main/Filebeat::Prospector[syslogs]/File[filebeat-syslogs]/ensure: created
==> icinga2-elastic: Notice: /Stage[main]/Filebeat::Service/Service[filebeat]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: /Stage[main]/Main/File[kibana-setup]/ensure: defined content as '{md5}aae1c0ca3a49e879523d04ab6c410c70'
==> icinga2-elastic: Notice: /Stage[main]/Main/Exec[finish-kibana-setup]/returns: Restart elasticsearch instance
==> icinga2-elastic: Notice: /Stage[main]/Main/Exec[finish-kibana-setup]/returns: Checking whether Elasticsearch is listening at http://localhost:9200
==> icinga2-elastic: Notice: /Stage[main]/Main/Exec[finish-kibana-setup]/returns: .....................................................................................................................................................................................................................................................................................................Cannot reach Elasticsearch at http://localhost:9200. Timeout reached.
==> icinga2-elastic: Error: /usr/local/bin/kibana-setup returned 1 instead of one of [0]
==> icinga2-elastic: Error: /Stage[main]/Main/Exec[finish-kibana-setup]/returns: change from notrun to 0 failed: /usr/local/bin/kibana-setup returned 1 instead of one of [0]
==> icinga2-elastic: Notice: /Stage[main]/Main/Exec[icingabeat-kibana-dashboards]: Dependency Exec[finish-kibana-setup] has failures: true
==> icinga2-elastic: Warning: /Stage[main]/Main/Exec[icingabeat-kibana-dashboards]: Skipping because of failed dependencies
==> icinga2-elastic: Notice: /Stage[main]/Main/Exec[icingabeat-kibana-default-index-pattern]: Dependency Exec[finish-kibana-setup] has failures: true
==> icinga2-elastic: Warning: /Stage[main]/Main/Exec[icingabeat-kibana-default-index-pattern]: Skipping because of failed dependencies
==> icinga2-elastic: Notice: /Stage[main]/Apache/Concat[/etc/httpd/conf/ports.conf]/File[/etc/httpd/conf/ports.conf]/ensure: defined content as '{md5}334fa5cddbf9a408ea1ca7a1666b1fc4'
==> icinga2-elastic: Notice: /Stage[main]/Apache/File[/etc/httpd/conf/httpd.conf]/content: content changed '{md5}f5e7449c0f17bc856e86011cb5d152ba' to '{md5}723ff66721ce90bd757dfed2a1db1725'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Mod::Cgi/Apache::Mod[cgi]/File[cgi.load]/ensure: defined content as '{md5}ac20c5c5779b37ab06b480d6485a0881'
==> icinga2-elastic: Notice: /Stage[main]/Apache::Service/Service[httpd]/ensure: ensure changed 'stopped' to 'running'
==> icinga2-elastic: Notice: Finished catalog run in 617.01 seconds
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.

Expected Behavior

A working cluster

Current Behavior

See the log above..

Steps to Reproduce (for bugs)

  1. cd icinga2-elastic && vagrant up

Your Environment

  • Vagrant version (vagrant -v):
⚡ vagrant -v
Vagrant 1.9.1
  • Box name: icinga2-elastic
  • Release version:
⚡ git log --oneline -n 1
b3e3aa8 Merge pull request #74 from Icinga/feature/github-issue-tempate
  • Operating system: Mac OS
  • Provider (VirtualBox, Parallels, libvirt): VirtualBox

Specify boxes and IP layout

Requirements

  • drop icinga1x box (centos6 only)
  • add training/workshop and test vms

Overview

Name OS Net
standalone CentOS7 192.168.56.11/30
standalone-influxdb CentOS7
standalone-elastic CentOS7
standalone-graylog CentOS7
cluster-centos7 CentOS7 192.168.56.50/30
cluster-ha-centos7 CentOS7 192.168.56.60/30
test-freebsd FreeBSD 192.168.56.50/30
training-master1/2 CentOS7 192.168.56.200/28

Note: This may change.

Training boxes should use the same addresses as known from the docs, 192.169.56.101/102

Integrate icingaweb2-module-grafana into icinga2x-influxdb

Requires modifications to the dashboards

  • wrap the json into `{ "dashboard": ..., "overwrite": true }
  • replace all datasource fields with "icinga2-influxdb"
  • modify the default datasource name to "icinga2-influxdb"

The Icinga Web 2 module itself requires a local config.ini connecting to Grafana.

Refactor provisioner scripts into Ruby

Currently there's a couple of scripts in use to "finish the setup", mainly for provisioning the application's REST API and providing configuration settings.

Those bash scripts should be refactored into Ruby functions and thus be used inside the Puppet code.

  • Graylog
  • Elastic
  • InfluxDB
  • Grafana

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.