diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-06-23 09:55:59 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-06-23 09:55:59 -0300 |
commit | 54c56759436016f3ac3e10ac02863e4a6e225821 (patch) | |
tree | 11634bf27dfc7e6d4f8eeafe618e70f11f064e10 /manifests | |
parent | bbfc27adeee9443a644b09d8ce83f11967d49b22 (diff) | |
download | puppet-nodo-54c56759436016f3ac3e10ac02863e4a6e225821.tar.gz puppet-nodo-54c56759436016f3ac3e10ac02863e4a6e225821.tar.bz2 |
Do not install cpuid on arm systems
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/physical.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/utils/physical.pp b/manifests/utils/physical.pp index d201193..135ef97 100644 --- a/manifests/utils/physical.pp +++ b/manifests/utils/physical.pp @@ -24,13 +24,13 @@ class nodo::utils::physical ( 'powertop', 'bwm-ng', 'inxi', - 'cpuid', ]: ensure => $ensure, } package { [ 'acpi', + 'cpuid', ]: ensure => $::architecture ? { 'armv5tel' => absent, |