summaryrefslogtreecommitdiff
path: root/manifests/debian.pp
blob: 38659eb8edfd473b94d7380ff74986b5079e7755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class nagios::debian inherits nagios::base {

    Package['nagios'] { name => 'nagios3' }

    package { [ 'nagios-plugins', 'nagios-snmp-plugins','nagios-nrpe-plugin' ]:
        ensure => 'present',
        notify => Service['nagios'],
    }

    Service['nagios'] {
        name => 'nagios3',
        hasstatus => true,
    }
}