-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathapply_service.pp
30 lines (27 loc) · 971 Bytes
/
apply_service.pp
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
include icinga2
icinga2::object::service { 'testservice':
target => '/etc/icinga2/conf.d/test.conf',
apply => true,
assign => ['host.vars.os == Linux'],
ignore => ['host.vars.os == Windows'],
display_name => 'Test Service',
check_command => 'mysql',
}
icinga2::object::service { 'testservice2':
target => '/etc/icinga2/conf.d/test.conf',
apply => 'identifier => oid in host.vars.oids',
apply_target => 'Host',
assign => ['host.vars.os == Linux'],
ignore => ['host.vars.os == Windows'],
display_name => 'Test Service',
check_command => 'mysql',
}
icinga2::object::notification { 'testnotification':
target => '/etc/icinga2/conf.d/test.conf',
apply => true,
apply_target => 'Service',
assign => ['host.vars.os == Linux'],
ignore => ['host.vars.os == Windows'],
import => ['mail-service-notification'],
user_groups => ['icingaadmins'],
}