summaryrefslogtreecommitdiff
path: root/manifests/irc_bot.pp
blob: 7e934ef14a700c41c312bb5d0473f49be23795d2 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class nagios::irc_bot(
  $nsa_socket = 'absent',
  $nsa_server,
  $nsa_port = 6667,
  $nsa_nickname,
  $nsa_password = '',
  $nsa_channel,
  $nsa_pidfile = 'absent',
  $nsa_realname = 'Nagios',
  $nsa_usenotices = false,
  $nsa_commandfile = 'absent'
) {
  $real_nsa_socket = $nsa_socket ? {
    'absent' => $::operatingsystem ? {
      centos => '/var/run/nagios-nsa/nsa.socket',
      default => '/var/run/nagios3/nsa.socket'
    },
    default => $nsa_socket,
  }
  $real_nsa_pidfile = $nsa_pidfile ? {
    'absent' => $::operatingsystem ? {
      centos => '/var/run/nagios-nsa/nsa.pid',
      default => '/var/run/nagios3/nsa.pid'
    },
    default => $nsa_pidfile,
  }
  $real_nsa_commandfile = $nsa_commandfile ? {
    'absent' => $::operatingsystem ? {
      centos => '/var/spool/nagios/cmd/nagios.cmd',
      default => '/var/lib/nagios3/rw/nagios.cmd'
    },
    default => $nsa_commandfile,
  }

  case $::operatingsystem {
    centos: {
      include nagios::irc_bot::centos
    }
    debian,ubuntu: {
      include nagios::irc_bot::debian
    }
    default: {
      include nagios::irc_bot::base
    }
  }

  if $nagios::manage_shorewall {
    include shorewall::rules::out::irc
  }
}