diff options
-rwxr-xr-x | deployment/dns/templates/mageia.org.zone | 1 | ||||
-rw-r--r-- | deployment/mga_buildsystem/manifests/config.pp | 4 | ||||
-rw-r--r-- | manifests/nodes_ip.pp | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/deployment/dns/templates/mageia.org.zone b/deployment/dns/templates/mageia.org.zone index 50fc8ab9..e1ca1b69 100755 --- a/deployment/dns/templates/mageia.org.zone +++ b/deployment/dns/templates/mageia.org.zone @@ -135,5 +135,6 @@ scwx861 IN CNAME scwx86 scwx862 IN CNAME scwx86 scwaarch641 IN CNAME scwaarch64 scwaarch642 IN CNAME scwaarch64 +scwaarch644 IN CNAME scwaarch643 <%# vim: set filetype=bindzone : -%> diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index 32f139f2..00f77477 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -29,7 +29,7 @@ class mga_buildsystem::config { 'x86_64' => [ 'ecosse0', 'rabbit0', 'ecosse1', 'rabbit1', 'scwx861', 'rabbit2', 'scwx862' ], 'armv5tl' => [ 'armorique', 'armagnac', 'armlet1', 'armlet2', 'armlet3', 'armlet4', 'armlet5', 'armlet6', 'armlet8', 'armlet9' ], 'armv7hl' => [ 'armlet1', 'armlet2', 'armlet3', 'armlet4', 'armlet5', 'armlet6', 'armorique', 'armagnac', 'armlet8', 'armlet9' ], - 'aarch64' => [ 'scwaarch641', 'scwaarch642' ], + 'aarch64' => [ 'scwaarch641', 'scwaarch642', 'scwaarch643', 'scwaarch644' ], }, build_nodes_aliases => { 'jonund0' => "jonund.${::domain}", @@ -42,6 +42,7 @@ class mga_buildsystem::config { 'scwx862' => "scwx86.${::domain}", 'scwaarch641' => "scwaarch64.${::domain}", 'scwaarch642' => "scwaarch64.${::domain}", + 'scwaarch644' => "scwaarch643.${::domain}", }, build_src_node => 'duvel', } @@ -171,6 +172,7 @@ class mga_buildsystem::config { '2001:bc8:4400:2700::2729', $::nodes_ipaddr[scwx86][ipv6], $::nodes_ipaddr[scwaarch64][ipv6], + $::nodes_ipaddr[scwaarch643][ipv6], ] $repo_allow_from_domains = [ ".${::domain}", diff --git a/manifests/nodes_ip.pp b/manifests/nodes_ip.pp index 83e34935..43df3752 100644 --- a/manifests/nodes_ip.pp +++ b/manifests/nodes_ip.pp @@ -57,6 +57,9 @@ $nodes_ipaddr = { }, scwaarch64 => { ipv6 => '2001:bc8:4400:2700::245d', + }, + scwaarch643 => { + ipv6 => '2001:bc8:4400:2700::2701', } } |