diff options
author | Thomas Backlund <tmb@mageia.org> | 2014-04-27 09:39:26 +0000 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2014-04-27 09:39:26 +0000 |
commit | cd16d8d5e70739934be4820d967ec71dfe99b2fb (patch) | |
tree | 51b06a0c43597a3765c5f70bfb2428c5a3341134 | |
parent | a9af7a3495685514bd1a76b7a7ebc43caf9cdfcb (diff) | |
download | puppet-cd16d8d5e70739934be4820d967ec71dfe99b2fb.tar puppet-cd16d8d5e70739934be4820d967ec71dfe99b2fb.tar.gz puppet-cd16d8d5e70739934be4820d967ec71dfe99b2fb.tar.bz2 puppet-cd16d8d5e70739934be4820d967ec71dfe99b2fb.tar.xz puppet-cd16d8d5e70739934be4820d967ec71dfe99b2fb.zip |
add infra_3 and infra_4 targets
-rw-r--r-- | deployment/mga_buildsystem/manifests/config.pp | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index 0cf4b52c..980d73e6 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -669,6 +669,68 @@ class mga_buildsystem::config { }, 'no_mirror' => true, }, + + 'infra_3' => { + 'arch' => $std_arch, + 'medias' => $infra_medias, + 'base_media' => [ '3/core/release', '3/core/updates', 'infra/updates' ], + 'branch' => 'Official', + 'version' => '3', + 'submit_allowed' => $svn_root_packages, + 'macros' => $std_macros, + 'based_on' => { + '3' => { + 'core' => [ 'release', 'updates' ], + }, + }, + 'youri' => { + 'upload' => { + 'targets' => $infra_youri_upload_targets, + 'checks' => { + 'rpmlint' => $mga2_rpmlint, + }, + }, + 'todo' => { + 'targets' => $infra_youri_todo_targets, + 'checks' => { + 'rpmlint' => $mga2_rpmlint, + 'version' => $infra_version_check, + }, + }, + }, + 'no_mirror' => true, + }, + + 'infra_4' => { + 'arch' => $std_arch, + 'medias' => $infra_medias, + 'base_media' => [ '4/core/release', '4/core/updates', 'infra/updates' ], + 'branch' => 'Official', + 'version' => '4', + 'submit_allowed' => $svn_root_packages, + 'macros' => $std_macros, + 'based_on' => { + '4' => { + 'core' => [ 'release', 'updates' ], + }, + }, + 'youri' => { + 'upload' => { + 'targets' => $infra_youri_upload_targets, + 'checks' => { + 'rpmlint' => $mga2_rpmlint, + }, + }, + 'todo' => { + 'targets' => $infra_youri_todo_targets, + 'checks' => { + 'rpmlint' => $mga2_rpmlint, + 'version' => $infra_version_check, + }, + }, + }, + 'no_mirror' => true, + }, } } $checks_tag_options = { |