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