diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-05-30 21:33:04 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-05-30 21:33:04 +0000 |
commit | f3d0be6bd085bbd9d73b6721610532437a622aa4 (patch) | |
tree | 715d7697aeef9d24467d24397d5d08e2c9742180 /deployment | |
parent | 6525dc5064047dfc974b1704b72938730d4f1328 (diff) | |
download | puppet-f3d0be6bd085bbd9d73b6721610532437a622aa4.tar puppet-f3d0be6bd085bbd9d73b6721610532437a622aa4.tar.gz puppet-f3d0be6bd085bbd9d73b6721610532437a622aa4.tar.bz2 puppet-f3d0be6bd085bbd9d73b6721610532437a622aa4.tar.xz puppet-f3d0be6bd085bbd9d73b6721610532437a622aa4.zip |
Fix base_media for infra_1 and infra_2
(thanks to pterjan for finding the problem)
Diffstat (limited to 'deployment')
-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 efce9cdc..868c48c8 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -532,7 +532,7 @@ class mga_buildsystem::config { 'infra_1' => { 'arch' => $std_arch, 'medias' => $infra_medias, - 'base_media' => $std_base_media, + 'base_media' => [ '1/core/release', '1/core/updates', 'infra/updates' ], 'branch' => 'Official', 'version' => '1', 'submit_allowed' => $svn_root_packages, @@ -563,7 +563,7 @@ class mga_buildsystem::config { 'infra_2' => { 'arch' => $std_arch, 'medias' => $infra_medias, - 'base_media' => $std_base_media, + 'base_media' => [ '2/core/release', '2/core/updates', 'infra/updates' ], 'branch' => 'Official', 'version' => '2', 'submit_allowed' => $svn_root_packages, |