diff options
author | Olivier Blin <dev@blino.org> | 2015-11-01 01:29:56 +0100 |
---|---|---|
committer | Olivier Blin <dev@blino.org> | 2015-11-01 01:29:56 +0100 |
commit | 850251cb5a737d3e15e923ca6ae99efd3a40901c (patch) | |
tree | d1c7884b170dd52959ff3f72def076a23706a5c3 /deployment/mga_buildsystem/manifests | |
parent | c67ac54849181f3036e18c10b42ea2f0f68f4e82 (diff) | |
download | puppet-850251cb5a737d3e15e923ca6ae99efd3a40901c.tar puppet-850251cb5a737d3e15e923ca6ae99efd3a40901c.tar.gz puppet-850251cb5a737d3e15e923ca6ae99efd3a40901c.tar.bz2 puppet-850251cb5a737d3e15e923ca6ae99efd3a40901c.tar.xz puppet-850251cb5a737d3e15e923ca6ae99efd3a40901c.zip |
fix armv5tl addition, and hardcode the list
There is no easy way in puppet to concatenate arrays, besides using
the external stdlib module.
Diffstat (limited to 'deployment/mga_buildsystem/manifests')
-rw-r--r-- | deployment/mga_buildsystem/manifests/config.pp | 4 |
1 files 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, |