blob: 067a25c9d9f47fca8dc1e5a448192f1593c866d4 (
plain)
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
|
class check_mk::server::collect_ps (
$config = "${::check_mk::config::etc_dir}/check_mk/conf.d/ps.mk"
) {
# this class gets run on the check-mk server in order to collect the
# stored configs created on clients and assemble the ps.mk config file
concat { $config:
owner => 'root',
group => 'root',
mode => '0644',
notify => Exec['check_mk-refresh'],
}
concat::fragment{'check_mk_ps_header':
target => $config,
content => "checks += [\n",
order => 10,
}
Check_mk::Ps <<| tag == 'check_mk_ps' |>> {
target => $config,
notify => Exec['check_mk-refresh']
}
concat::fragment{'check_mk_ps_footer':
target => $config,
content => "]\n",
order => 90,
}
}
|