blob: 5d85c9082565cc977980b75b44e9cff96ce909fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
class nodo::utils::network::analyzer {
package { [ 'tshark', 'arping', 'fping', 'oping', 'tcptraceroute', 'tcpstat', 'iperf' ]:
ensure => installed,
}
package { 'zmap':
ensure => $::lsbdistcodename ? {
'squeeze' => absent,
default => present,
}
}
# https://www.linode.com/docs/networking/diagnosing-network-issues-with-mtr
package { 'mtr':
ensure => present,
}
# Stuff we are aware but not using right now
package { 'heartbleeder':
ensure => absent,
}
}
|