diff options
Diffstat (limited to 'manifests/utils')
-rw-r--r-- | manifests/utils/storage/archive.pp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/manifests/utils/storage/archive.pp b/manifests/utils/storage/archive.pp index 779e28e..e7af761 100644 --- a/manifests/utils/storage/archive.pp +++ b/manifests/utils/storage/archive.pp @@ -3,7 +3,15 @@ class nodo::utils::storage::archive { ensure => latest, } - package { [ 'jigdo-file', 'fdupes', 'gddrescue', 'syslinux-utils' ]: + package { [ 'jigdo-file', 'fdupes', 'gddrescue' ]: ensure => installed, } + + package { 'syslinux-utils': + ensure => $::architecture ? { + 'amd64' => present, + 'i386' => present, + default => absent, + }, + } } |