diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-09-13 16:40:30 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-09-13 16:40:30 -0300 |
commit | 4afd51384ee339aab72244b5d02b741443b005ed (patch) | |
tree | 292dbe0d4c859154fc23a3e99204f39e2ff89b9e /manifests | |
parent | 00bbc5699b9599c056533f4aa5112621a7460b12 (diff) | |
download | puppet-nodo-4afd51384ee339aab72244b5d02b741443b005ed.tar.gz puppet-nodo-4afd51384ee339aab72244b5d02b741443b005ed.tar.bz2 |
Restrict syslinux availability
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/storage/iso.pp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/utils/storage/iso.pp b/manifests/utils/storage/iso.pp index 24772d6..73590f7 100644 --- a/manifests/utils/storage/iso.pp +++ b/manifests/utils/storage/iso.pp @@ -1,5 +1,9 @@ class nodo::utils::storage::iso { package { 'syslinux': - ensure => installed, + ensure => $::arch ? { + 'amd64' => present, + 'i386' => present, + default => absent, + }, } } |