diff options
Diffstat (limited to 'puppet')
4 files changed, 22 insertions, 11 deletions
| diff --git a/puppet/modules/site_check_mk/files/agent/logwatch/syslog/tapicero.cfg b/puppet/modules/site_check_mk/files/agent/logwatch/syslog/tapicero.cfg index 7f43a18c..93ce0311 100644 --- a/puppet/modules/site_check_mk/files/agent/logwatch/syslog/tapicero.cfg +++ b/puppet/modules/site_check_mk/files/agent/logwatch/syslog/tapicero.cfg @@ -3,11 +3,6 @@  # instances, so we ignore it  # see https://leap.se/code/issues/5168   I tapicero.*RestClient::PreconditionFailed: -# until we can analyze multiline patterns with -# check_mk logwatch, we unfortunatly need ignore this -# line too, which shows up in combination with the -# above PreconditionFailed error. -# see https://leap.se/code/issues/4821#note-5 - I tapicero.*Creating database.*failed due to: + C tapicero.*Creating database.*failed due to:   C tapicero.*failed   W tapicero.*Couch stream ended unexpectedly. diff --git a/puppet/modules/site_couchdb/manifests/bigcouch/compaction.pp b/puppet/modules/site_couchdb/manifests/bigcouch/compaction.pp new file mode 100644 index 00000000..84aab4ef --- /dev/null +++ b/puppet/modules/site_couchdb/manifests/bigcouch/compaction.pp @@ -0,0 +1,8 @@ +class site_couchdb::bigcouch::compaction { +  cron { +    'compact_all_shards': +      command     => '/srv/leap/couchdb/scripts/bigcouch_compact_all_shards.sh >> /var/log/bigcouch/compaction.log', +      hour        => 3, +      minute      => 17; +  } +} diff --git a/puppet/modules/site_couchdb/manifests/init.pp b/puppet/modules/site_couchdb/manifests/init.pp index e4c0211b..c67ce8c8 100644 --- a/puppet/modules/site_couchdb/manifests/init.pp +++ b/puppet/modules/site_couchdb/manifests/init.pp @@ -94,6 +94,7 @@ class site_couchdb {    include site_couchdb::add_users    include site_couchdb::designs    include site_couchdb::logrotate +  include site_couchdb::bigcouch::compaction    include site_shorewall::couchdb    include site_shorewall::couchdb::bigcouch @@ -110,4 +111,9 @@ class site_couchdb {    include site_check_mk::agent::couchdb    include site_check_mk::agent::tapicero + +  file { '/var/log/bigcouch': +    ensure => directory +  } +  } diff --git a/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp b/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp index aea66f78..83e27376 100644 --- a/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp +++ b/puppet/modules/site_postfix/manifests/mx/reserved_aliases.pp @@ -1,11 +1,13 @@ +# Defines which mail addresses shouldn't be available and where they should fwd  class site_postfix::mx::reserved_aliases {    postfix::mailalias { -    [ 'postmaster', 'hostmaster', 'domainadmin', 'certmaster', 'ssladmin', -      'arin-admin', 'administrator', 'webmaster', 'www-data', 'www', -      'nobody', 'sys', 'postgresql', 'mysql', 'bin', 'cron', 'lp', 'games', -      'maildrop', 'abuse', 'noc', 'security', 'usenet', 'news', 'uucp', -      'ftp' ]: +    [ 'abuse', 'admin', 'arin-admin', 'administrator', 'bin', 'cron', +      'certmaster', 'domainadmin', 'games', 'ftp', 'hostmaster', 'lp', +      'maildrop', 'mysql', 'news', 'nobody', 'noc', 'postmaster', 'postgresql', +      'security', 'ssladmin', 'sys', 'usenet', 'uucp', 'webmaster', 'www', +      'www-data', +    ]:        ensure    => present,        recipient => 'root'    } | 
