diff options
-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, |