diff options
author | Thomas Backlund <tmb@mageia.org> | 2019-07-02 00:09:52 +0300 |
---|---|---|
committer | Thomas Backlund <tmb@mageia.org> | 2019-07-02 00:09:52 +0300 |
commit | 3d0c7973ae240fd6b3e1a377f1ff1097603a50aa (patch) | |
tree | 334e7a372b4c726a6c1472aa70bdf4394811cb13 | |
parent | efbcd88edab2079688f6966fa8ffb24f95c2359a (diff) | |
download | puppet-3d0c7973ae240fd6b3e1a377f1ff1097603a50aa.tar puppet-3d0c7973ae240fd6b3e1a377f1ff1097603a50aa.tar.gz puppet-3d0c7973ae240fd6b3e1a377f1ff1097603a50aa.tar.bz2 puppet-3d0c7973ae240fd6b3e1a377f1ff1097603a50aa.tar.xz puppet-3d0c7973ae240fd6b3e1a377f1ff1097603a50aa.zip |
add 3rd aarch64 node
-rwxr-xr-x | deployment/dns/templates/mageia.org.zone | 3 | ||||
-rw-r--r-- | deployment/mga_buildsystem/manifests/config.pp | 4 | ||||
-rw-r--r-- | manifests/nodes_ip.pp | 3 |
3 files changed, 8 insertions, 2 deletions
diff --git a/deployment/dns/templates/mageia.org.zone b/deployment/dns/templates/mageia.org.zone index 6a56f830..0d354ea8 100755 --- a/deployment/dns/templates/mageia.org.zone +++ b/deployment/dns/templates/mageia.org.zone @@ -7,7 +7,7 @@ ; $Id$ $TTL 30m @ IN SOA ns0.mageia.org. root.mageia.org. ( - 2018101802 ; Serial + 2019070201 ; Serial 7200 ; Refresh 3600 ; Retry 86400 ; Expire @@ -137,5 +137,6 @@ scwx863 IN CNAME scwx86 scwaarch641 IN CNAME scwaarch64 scwaarch642 IN CNAME scwaarch64 scwaarch644 IN CNAME scwaarch643 +scwaarch646 IN CNAME scwaarch645 <%# vim: set filetype=bindzone : -%> diff --git a/deployment/mga_buildsystem/manifests/config.pp b/deployment/mga_buildsystem/manifests/config.pp index 6e8f230f..58eda68e 100644 --- a/deployment/mga_buildsystem/manifests/config.pp +++ b/deployment/mga_buildsystem/manifests/config.pp @@ -30,7 +30,7 @@ class mga_buildsystem::config { 'x86_64' => [ 'rabbit0', 'ecosse0', 'scwx861', 'rabbit1', 'ecosse1', 'scwx862', 'rabbit2', 'scwx863' ], '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', 'scwaarch643', 'scwaarch644' ], + 'aarch64' => [ 'scwaarch641', 'scwaarch642', 'scwaarch643', 'scwaarch644', 'scwaarch645', 'scwaarch646' ], }, build_nodes_aliases => { 'jonund0' => "jonund.${::domain}", @@ -45,6 +45,7 @@ class mga_buildsystem::config { 'scwaarch641' => "scwaarch64.${::domain}", 'scwaarch642' => "scwaarch64.${::domain}", 'scwaarch644' => "scwaarch643.${::domain}", + 'scwaarch646' => "scwaarch645.${::domain}", }, build_src_node => 'duvel', } @@ -175,6 +176,7 @@ class mga_buildsystem::config { $::nodes_ipaddr[scwx86][ipv6], $::nodes_ipaddr[scwaarch64][ipv6], $::nodes_ipaddr[scwaarch643][ipv6], + $::nodes_ipaddr[scwaarch645][ipv6], ] $repo_allow_from_domains = [ ".${::domain}", diff --git a/manifests/nodes_ip.pp b/manifests/nodes_ip.pp index 53305545..31388eb5 100644 --- a/manifests/nodes_ip.pp +++ b/manifests/nodes_ip.pp @@ -60,6 +60,9 @@ $nodes_ipaddr = { }, scwaarch643 => { ipv6 => '2001:bc8:4400:2700::241b', + }, + scwaarch645 => { + ipv6 => '2001:bc8:4400:2700::1549', } } |