From 4afd51384ee339aab72244b5d02b741443b005ed Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 13 Sep 2015 16:40:30 -0300 Subject: Restrict syslinux availability --- manifests/utils/storage/iso.pp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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, + }, } } -- cgit v1.2.3