diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-12 11:13:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-12 11:13:12 -0300 |
commit | 27c3ace7fbd868146681a6e99de778224034ba58 (patch) | |
tree | 983a387710024d25141caab681e94a59b093ba9c | |
parent | 6ba84500224ef0b6acbaa97b174daeed2fe38f6f (diff) | |
download | puppet-nodo-27c3ace7fbd868146681a6e99de778224034ba58.tar.gz puppet-nodo-27c3ace7fbd868146681a6e99de778224034ba58.tar.bz2 |
Do not try to install acpi on armv7l
-rw-r--r-- | manifests/utils/physical.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manifests/utils/physical.pp b/manifests/utils/physical.pp index 071c9a9..ac317f2 100644 --- a/manifests/utils/physical.pp +++ b/manifests/utils/physical.pp @@ -11,6 +11,7 @@ class nodo::utils::physical { ensure => $::architecture ? { 'armv5tel' => absent, 'armv6l' => absent, + 'armv7l' => absent, default => present, } } |