diff options
| author | varac <varacanero@zeromail.org> | 2014-02-27 22:43:31 +0100 | 
|---|---|---|
| committer | varac <varacanero@zeromail.org> | 2014-02-27 22:43:31 +0100 | 
| commit | c16592b6ac1e56bb9955a337b0564686c9e18e20 (patch) | |
| tree | 0427d06dc8fbe8ef659e63ba65b727f9e74dd80a | |
| parent | 0cd0076f945c0e02bfdc50ff483ceebceec131e2 (diff) | |
| parent | 2209afd630a75335e26516c6d9fa1c796bca8a49 (diff) | |
Merge branch 'webapp_check' into 0.6
| -rw-r--r-- | provider_base/services/couchdb.json | 3 | ||||
| -rw-r--r-- | provider_base/services/webapp.json | 6 | ||||
| -rw-r--r-- | puppet/modules/site_check_mk/manifests/agent/webapp.pp | 9 | ||||
| -rw-r--r-- | puppet/modules/site_config/manifests/hosts.pp | 1 | ||||
| -rw-r--r-- | puppet/modules/site_config/templates/hosts | 3 | 
5 files changed, 20 insertions, 2 deletions
| diff --git a/provider_base/services/couchdb.json b/provider_base/services/couchdb.json index 0cb044ef..5f1b5381 100644 --- a/provider_base/services/couchdb.json +++ b/provider_base/services/couchdb.json @@ -48,6 +48,9 @@                  "password": "= secret :couch_webapp_password",                  "salt": "= hex_secret :couch_webapp_password_salt, 128"              } +        }, +    "webapp": { +         "nagios_test_pw": "= secret :nagios_test_password"          }      }  } diff --git a/provider_base/services/webapp.json b/provider_base/services/webapp.json index 8974f851..f7abdffd 100644 --- a/provider_base/services/webapp.json +++ b/provider_base/services/webapp.json @@ -19,7 +19,11 @@        "source": "https://leap.se/git/leap_web",        "revision": "origin/master"      }, -    "client_version": "= global.provider.client_version" +    "client_version": "= global.provider.client_version", +    "nagios_test_user": { +      "username": "nagios_test", +      "password": "= secret :nagios_test_password" +    }    },    "stunnel": {      "couch_client": "= stunnel_client(nodes_like_me[:services => :couchdb], global.services[:couchdb].couch.port)" diff --git a/puppet/modules/site_check_mk/manifests/agent/webapp.pp b/puppet/modules/site_check_mk/manifests/agent/webapp.pp index dc2baf19..48fa0828 100644 --- a/puppet/modules/site_check_mk/manifests/agent/webapp.pp +++ b/puppet/modules/site_check_mk/manifests/agent/webapp.pp @@ -1,5 +1,14 @@  class site_check_mk::agent::webapp { +  # check webapp login +  package { 'python-srp': ensure => installed } +  file { '/usr/lib/check_mk_agent/local/nagios-webapp_login.py': +    ensure => link, +    target => '/srv/leap/webapp/test/nagios/webapp_login.py' +  } + + +  # check syslog    concat::fragment { 'syslog_webapp':      source  => 'puppet:///modules/site_check_mk/agent/logwatch/syslog/webapp.cfg',      target  => '/etc/check_mk/logwatch.d/syslog.cfg', diff --git a/puppet/modules/site_config/manifests/hosts.pp b/puppet/modules/site_config/manifests/hosts.pp index a3ce0c1f..e5d4dd70 100644 --- a/puppet/modules/site_config/manifests/hosts.pp +++ b/puppet/modules/site_config/manifests/hosts.pp @@ -3,6 +3,7 @@ class site_config::hosts() {    $hostname      = hiera('name')    $domain_hash   = hiera('domain')    $domain_public = $domain_hash['full_suffix'] +  $api           = hiera('api', '')    file { '/etc/hostname':      ensure  => present, diff --git a/puppet/modules/site_config/templates/hosts b/puppet/modules/site_config/templates/hosts index c0a2740f..bfcabaa5 100644 --- a/puppet/modules/site_config/templates/hosts +++ b/puppet/modules/site_config/templates/hosts @@ -1,7 +1,8 @@  # This file is managed by puppet, any changes will be overwritten!  127.0.0.1    localhost -127.0.1.1    <%= @hostname %>.<%= @domain_public %> <%= @hostname %> +127.0.1.1    <%= @hostname %>.<%= @domain_public %> <%= @hostname %> <% if (defined? @services) and (@services.include? 'webapp') -%><%= @domain_public %> <%= @api['domain'] %><% end -%> +  <%- if @hosts then -%>  <%   @hosts.keys.sort.each do |name| -%> | 
