aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/mga_buildsystem/manifests
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-05-23 15:06:52 +0000
committerNicolas Vigier <boklm@mageia.org>2013-05-23 15:06:52 +0000
commit4dd6894b35de045bde3b5638ad71f02dffc8b388 (patch)
tree6df431a6d8be300c60186076cbb934832926f72e /deployment/mga_buildsystem/manifests
parent50a4542efc81f09671f83a9b96aadaef1f069b8a (diff)
downloadpuppet-4dd6894b35de045bde3b5638ad71f02dffc8b388.tar
puppet-4dd6894b35de045bde3b5638ad71f02dffc8b388.tar.gz
puppet-4dd6894b35de045bde3b5638ad71f02dffc8b388.tar.bz2
puppet-4dd6894b35de045bde3b5638ad71f02dffc8b388.tar.xz
puppet-4dd6894b35de045bde3b5638ad71f02dffc8b388.zip
buildsystem: add /etc/youri/host.conf
The host.conf config file for youri contains the hostnames of the nodes that are building packages for each architecture. The variable $build_src_node has been added to buildsystem::var::scheduler to contain the hostname of the server building the initial src.rpm. The variable $build_nodes_aliases has been added to buildsystem::var::scheduler to be used to find the real hostnames of the nodes building the packages for each architecture.
Diffstat (limited to 'deployment/mga_buildsystem/manifests')
-rw-r--r--deployment/mga_buildsystem/manifests/config.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp
index de81bb2c..17e03b44 100644
--- a/deployment/mga_buildsystem/manifests/config.pp
+++ b/deployment/mga_buildsystem/manifests/config.pp
@@ -16,6 +16,13 @@ class mga_buildsystem::config {
'i586' => [ 'jonund0', 'ecosse0', 'jonund1', 'ecosse1' ],
'x86_64' => [ 'ecosse0', 'jonund0', 'ecosse1', 'jonund1' ],
},
+ build_nodes_aliases => {
+ 'jonund0' => "jonund.${::domain}",
+ 'jonund1' => "jonund.${::domain}",
+ 'ecosse0' => "ecosse.${::domain}",
+ 'ecosse1' => "ecosse.${::domain}",
+ },
+ build_src_node => "valstar.${::domain}",
}
include buildsystem::var::repository
class { 'buildsystem::var::binrepo':