diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-05-23 15:06:28 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-05-23 15:06:28 +0000 |
commit | 02004ba83701a19037e175e6b623d25ebb61f72a (patch) | |
tree | cb5ea9b4716aaf71b345329cb9765b16206ec8d6 /deployment | |
parent | 14f898ccf52e939055124855d465b11ca502b33b (diff) | |
download | puppet-02004ba83701a19037e175e6b623d25ebb61f72a.tar puppet-02004ba83701a19037e175e6b623d25ebb61f72a.tar.gz puppet-02004ba83701a19037e175e6b623d25ebb61f72a.tar.bz2 puppet-02004ba83701a19037e175e6b623d25ebb61f72a.tar.xz puppet-02004ba83701a19037e175e6b623d25ebb61f72a.zip |
buildsystem: add build_nodes parameter
Add build_nodes parameter in buildsystem::var::scheduler. This parameter
is a hash containing the build nodes available indexed by architecture.
Diffstat (limited to 'deployment')
-rw-r--r-- | deployment/mga_buildsystem/manifests/config.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index ade1cb92..cc586de8 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -10,6 +10,10 @@ class mga_buildsystem::config { class { 'buildsystem::var::scheduler' : admin_mail => 'mageia-sysadm@mageia.org', + build_nodes => { + 'i586' => [ 'jonund0', 'ecosse0', 'jonund1', 'ecosse1' ], + 'x86_64' => [ 'ecosse0', 'jonund0', 'ecosse1', 'jonund1' ], + }, } include buildsystem::var::repository class { 'buildsystem::var::youri': |