aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/tester.pp
blob: 0eb14b5efdef373a1f5ceb5ec2b083341f3db7f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class nodo::utils::tester(
  $ensure = 'installed',
)
{
  #
  # Testers / health check
  #
  package { [
    'memtester',
    'stress',
    'stress-ng',
    'sysbench',
    'bonnie++',
    #'stressant',
    #'systemd-bootchart',
  ]:
    ensure => $ensure,
  }
}