summaryrefslogtreecommitdiff
path: root/puppet/modules/nagios/manifests/service/passive.pp
blob: f3df1e8ba64c46d8a5eae2ac2e03c4fbee3898df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
define nagios::service::passive(
    $ensure = present,
    $notification_interval = '',
    $notification_period = '',
    $notification_options = '',
    $contact_groups = ''
) {

    nagios::service { $name:
        use                   => 'passive-service',
        check_command         => 'check_dummy!0',
        notification_interval => $notification_interval,
        notification_period   => $notification_period,
        notification_options  => $notification_options,
        contact_groups        => $contact_groups,
    }

}