1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# remove bigcouch leftovers from previous installations
class site_config::remove::bigcouch {
# Don't use check_mk logwatch to watch bigcouch logs anymore
# see https://leap.se/code/issues/7375 for more details
file { '/etc/check_mk/logwatch.d/bigcouch.cfg':
ensure => absent,
notify => [
Exec['remove_bigcouch_logwatch_stateline']
]
}
tidy {
'/etc/logrotate/bigcouch':;
'/srv/leap/nagios/plugins/check_unix_open_fds.pl':;
}
augeas {
'Couchdb_open_files':
incl => '/etc/check_mk/mrpe.cfg',
lens => 'Spacevars.lns',
changes => [
'rm /files/etc/check_mk/mrpe.cfg/Couchdb_open_files',
'rm /files/etc/check_mk/mrpe.cfg/Bigcouch_epmd_procs',
'rm /files/etc/check_mk/mrpe.cfg/Bigcouch_beam_procs',
'rm /files/etc/check_mk/mrpe.cfg/Bigcouch_open_files' ],
require => File['/etc/check_mk/mrpe.cfg'];
}
# check syslog msg from:
# - empd
# - /usr/local/bin/couch-doc-update
concat::fragment { 'syslog_bigcouch':
ensure => absent,
source => 'puppet:///modules/site_check_mk/agent/logwatch/syslog/bigcouch.cfg',
target => '/etc/check_mk/logwatch.d/syslog.cfg',
order => '02';
}
exec { 'remove_bigcouch_logwatch_stateline':
command => "sed -i '/bigcouch.log/d' /etc/check_mk/logwatch.state",
refreshonly => true,
}
cron { 'compact_all_shards':
ensure => absent
}
exec { 'kill_bigcouch_stunnel_procs':
refreshonly => true,
command => '/usr/bin/pkill -f "/usr/bin/stunnel4 /etc/stunnel/(ednp|epmd)_server.conf"'
}
# 'tidy' doesn't notify other resources, so we need to use file here instead
# see https://tickets.puppetlabs.com/browse/PUP-6021
file {
[ '/etc/stunnel/ednp_server.conf', '/etc/stunnel/epmd_server.conf']:
ensure => absent,
# notifying Service[stunnel] doesn't work here because the config
# files contain the pid of the procs to stop/start.
# If we remove the config, and restart stunnel then it will only
# stop/start the procs for which config files are found and the stale
# service will continue to run.
# So we simply kill them.
notify => Exec['kill_bigcouch_stunnel_procs']
}
}
|