aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/utils/physical.pp
blob: 3fbd28cfc2b0724e06ffdb4df641d07ba744698f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Common utilities for physical
class utils::physical {
  package { [ 'nload', 'acpid', 'slurm', 'ethtool', 'parted', 'iftop', 'iptraf', 'htop', 'sdparm' ]:
    ensure => installed,
  }

  package { 'acpi':
    ensure => $::architecture ? {
      'armv5tel' => absent,
       default   => present,
    }
  }
}