From 850251cb5a737d3e15e923ca6ae99efd3a40901c Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Sun, 1 Nov 2015 01:29:56 +0100 Subject: fix armv5tl addition, and hardcode the list There is no easy way in puppet to concatenate arrays, besides using the external stdlib module. --- deployment/mga_buildsystem/manifests/config.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index c47a8561..bc9fd048 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -60,7 +60,7 @@ class mga_buildsystem::config { } $std_arch = ['i586', 'x86_64'] - $arm32_arch = [ 'armv5tl' ] + $std_arch_with_arm32 = [ 'i586', 'x86_64', 'armv5tl' ] $std_repos = { 'release' => { 'media_type' => [ 'release' ], @@ -518,7 +518,7 @@ class mga_buildsystem::config { default_distro => 'cauldron', distros => { 'cauldron' => { - 'arch' => $std_arch + $arm32_arch, + 'arch' => $std_arch_with_arm32, 'mandatory_arch' => $std_arch, 'no_media_cfg_update' => true, 'medias' => $std_medias, -- cgit v1.2.1