From 27d4ec9334a95616d8953af71926e3c5e8c977c0 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 08:27:00 -0700 Subject: [PATCH 01/11] iad2: try and adjust totpcgi in iad2 to work with right cert Signed-off-by: Kevin Fenzi --- roles/totpcgi/templates/configmap.yml | 4 +++- roles/totpcgi/templates/totpcgi-httpd.conf.j2 | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/roles/totpcgi/templates/configmap.yml b/roles/totpcgi/templates/configmap.yml index 2d70707205..bd44488add 100644 --- a/roles/totpcgi/templates/configmap.yml +++ b/roles/totpcgi/templates/configmap.yml @@ -105,8 +105,10 @@ data: ServerName fas-all.stg.phx2.fedoraproject.org:8443 {% elif objectname == "configmap-totpcgi-vpn.yml" %} ServerName fas-all.vpn.fedoraproject.org:8443 -{% else %} +{% elif datacenter == 'phx2' %} ServerName fas-all.phx2.fedoraproject.org:8443 +{% elif datacenter == 'iad2' %} + ServerName fas-all.iad2.fedoraproject.org:8443 {% endif %} SSLEngine on {% if objectname == "configmap-totpcgi-vpn.yml" %} diff --git a/roles/totpcgi/templates/totpcgi-httpd.conf.j2 b/roles/totpcgi/templates/totpcgi-httpd.conf.j2 index caa1c6767f..e9fd6d546d 100644 --- a/roles/totpcgi/templates/totpcgi-httpd.conf.j2 +++ b/roles/totpcgi/templates/totpcgi-httpd.conf.j2 @@ -5,7 +5,11 @@ Listen 8443 ServerAdmin admin@fedoraproject.org DocumentRoot /var/www/totpcgi +{% if datacenter == 'phx2' %} ServerName fas-all.phx2.fedoraproject.org:8443 +{% elif datacenter == 'iad2' %} + ServerName fas-all.iad2.fedoraproject.org:8443 +{% endif %} ErrorLog /var/log/httpd/totpcgi-error.log SuexecUserGroup totpcgi totpcgi From 6e90c73bde1d5df60791cbcd833d98fe843e3cc3 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 08:36:00 -0700 Subject: [PATCH 02/11] iad2: adjust db backend for totpcgi Signed-off-by: Kevin Fenzi --- roles/totpcgi/templates/totpcgi.conf.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/totpcgi/templates/totpcgi.conf.j2 b/roles/totpcgi/templates/totpcgi.conf.j2 index 6c7ca08f97..bd6630dfad 100644 --- a/roles/totpcgi/templates/totpcgi.conf.j2 +++ b/roles/totpcgi/templates/totpcgi.conf.j2 @@ -10,11 +10,11 @@ fas_url = https://admin.fedoraproject.org/accounts/ [secret_backend] ; For PostgreSQL backend: engine = pgsql -pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} host=db-fas01{{ env_suffix }}.phx2.fedoraproject.org dbname=totpcgi +pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} host=db-fas01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org dbname=totpcgi [pincode_backend] engine = pgsql -pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} host=db-fas01{{ env_suffix }}.phx2.fedoraproject.org dbname=totpcgi +pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} host=db-fas01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org dbname=totpcgi ; For LDAP backend (simple bind auth): ;engine = ldap @@ -28,4 +28,4 @@ pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} ho ; For PostgreSQL backend: engine = pgsql -pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} host=db-fas01{{ env_suffix }}.phx2.fedoraproject.org dbname=totpcgi +pg_connect_string = user={{ totpcgiDBUser }} password={{ totpcgiDBPassword }} host=db-fas01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org dbname=totpcgi From e273d8d1cc5bead2bdd7e8454c1ffdb96f7cdf83 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 08:42:09 -0700 Subject: [PATCH 03/11] iad2: totpcgi: change a few more template places with phx2 in them. Signed-off-by: Kevin Fenzi --- roles/totpcgi/templates/provisioning.conf.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/totpcgi/templates/provisioning.conf.j2 b/roles/totpcgi/templates/provisioning.conf.j2 index 8f521ee199..b15c918d45 100644 --- a/roles/totpcgi/templates/provisioning.conf.j2 +++ b/roles/totpcgi/templates/provisioning.conf.j2 @@ -67,11 +67,11 @@ makedb = True ; For PostgreSQL backend: engine = pgsql -pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPassword }} host=db-fas01{{ env_suffix }}.phx2.fedoraproject.org dbname=totpcgi +pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPassword }} host=db-fas01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org dbname=totpcgi [pincode_backend] engine = pgsql -pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPassword }} host=db-fas01{{ env_suffix }}.phx2.fedoraproject.org dbname=totpcgi +pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPassword }} host=db-fas01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org dbname=totpcgi ; For LDAP backend (simple bind auth): ;engine = ldap @@ -85,4 +85,4 @@ pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPass ; For PostgreSQL backend: engine = pgsql -pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPassword }} host=db-fas01{{ env_suffix }}.phx2.fedoraproject.org dbname=totpcgi +pg_connect_string = user={{ totpcgiadminDBUser }} password={{ totpcgiadminDBPassword }} host=db-fas01{{ env_suffix }}.{{ datacenter }}.fedoraproject.org dbname=totpcgi From 8aec21a6d9b439eb652d3eb21b5e919ff1cb7f5f Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Tue, 26 May 2020 18:02:37 +0200 Subject: [PATCH 04/11] copr-be: set pipefail in vm-aws-new ... to not ignore ansible playbook failure, and to actually terminate the instance if the playbook fails. --- roles/copr/backend/templates/resalloc/vm-aws-new | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/copr/backend/templates/resalloc/vm-aws-new b/roles/copr/backend/templates/resalloc/vm-aws-new index dc36a5ec62..27dd311dd7 100755 --- a/roles/copr/backend/templates/resalloc/vm-aws-new +++ b/roles/copr/backend/templates/resalloc/vm-aws-new @@ -1,6 +1,7 @@ #! /usr/bin/bash set -e +set -o pipefail delete_script=$(readlink -f "$(dirname "$0")")/vm-aws-delete From bda99ed837c545a704bc2099e7f27c935ec4857b Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 09:18:44 -0700 Subject: [PATCH 05/11] iad2: fix yubikey for iad2 Signed-off-by: Kevin Fenzi --- roles/yubikey/templates/ykksm-config.php | 2 +- roles/yubikey/templates/ykval-config.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/yubikey/templates/ykksm-config.php b/roles/yubikey/templates/ykksm-config.php index 540e7d16bf..8eec1327eb 100644 --- a/roles/yubikey/templates/ykksm-config.php +++ b/roles/yubikey/templates/ykksm-config.php @@ -1,5 +1,5 @@ Date: Tue, 26 May 2020 10:25:41 -0700 Subject: [PATCH 06/11] iad2: add odcs rhel8 instances Signed-off-by: Kevin Fenzi --- inventory/inventory | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inventory/inventory b/inventory/inventory index e0c217492d..b8e9d4d863 100644 --- a/inventory/inventory +++ b/inventory/inventory @@ -488,6 +488,7 @@ ns05.fedoraproject.org [odcs_frontend] odcs-frontend01.phx2.fedoraproject.org +odcs-frontend01.iad2.fedoraproject.org [odcs_frontend_stg] odcs-frontend01.stg.phx2.fedoraproject.org @@ -498,6 +499,7 @@ odcs_backend_releng [odcs_backend_general] odcs-backend01.phx2.fedoraproject.org +odcs-backend01.iad2.fedoraproject.org [odcs_backend_releng] odcs-backend-releng01.phx2.fedoraproject.org @@ -1334,6 +1336,8 @@ mm-crawler01.iad2.fedoraproject.org noc01.iad2.fedoraproject.org ns01.iad2.fedoraproject.org ns02.iad2.fedoraproject.org +odcs-frontend01.iad2.fedoraproject.org +odcs-backend01.iad2.fedoraproject.org oci-registry01.iad2.fedoraproject.org oci-candidate-registry01.iad2.fedoraproject.org osbs-control01.iad2.fedoraproject.org From 7ee74d3a0747581233d8d010424d6f825b9a85be Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 10:26:49 -0700 Subject: [PATCH 07/11] iad2: odcs host vars Signed-off-by: Kevin Fenzi --- .../odcs-backend01.iad2.fedoraproject.org | 14 ++++++++++++++ .../odcs-frontend01.iad2.fedoraproject.org | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 inventory/host_vars/odcs-backend01.iad2.fedoraproject.org create mode 100644 inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org diff --git a/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org b/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org new file mode 100644 index 0000000000..7127702806 --- /dev/null +++ b/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org @@ -0,0 +1,14 @@ +--- +nm: 255.255.255.0 +gw: 10.3.169.254 +dns: 10.3.163.33 + +ks_url: http://10.3.163.35/repo/rhel/ks/kvm-rhel-8-iad2 +ks_repo: http://10.3.163.35/repo/rhel/RHEL8-x86_64/ + +eth0_ip: 10.3.169.110 + +volgroup: /dev/vg_guests +vmhost: bvmhost-x86-03.iad2.fedoraproject.org + +datacenter: iad2 diff --git a/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org b/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org new file mode 100644 index 0000000000..81f085ae65 --- /dev/null +++ b/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org @@ -0,0 +1,14 @@ +--- +nm: 255.255.255.0 +gw: 10.3.169.254 +dns: 10.3.163.33 + +ks_url: http://10.3.163.35/repo/rhel/ks/kvm-rhel-8-iad2 +ks_repo: http://10.3.163.35/repo/rhel/RHEL8-x86_64/ + +eth0_ip: 10.3.169.111 + +volgroup: /dev/vg_guests +vmhost: bvmhost-x86-04.iad2.fedoraproject.org + +datacenter: iad2 From 1f6fa204be89f54ff141e60ef086910f1eeb843a Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 10:27:22 -0700 Subject: [PATCH 08/11] iad2: add a openvpn ccd file for proxy10.iad2 Signed-off-by: Kevin Fenzi --- roles/openvpn/server/files/ccd/proxy10.iad2.fedoraproject.org | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 roles/openvpn/server/files/ccd/proxy10.iad2.fedoraproject.org diff --git a/roles/openvpn/server/files/ccd/proxy10.iad2.fedoraproject.org b/roles/openvpn/server/files/ccd/proxy10.iad2.fedoraproject.org new file mode 100644 index 0000000000..55c0293dc8 --- /dev/null +++ b/roles/openvpn/server/files/ccd/proxy10.iad2.fedoraproject.org @@ -0,0 +1,2 @@ +# ifconfig-push actualIP PtPIP +ifconfig-push 192.168.1.17 192.168.0.17 From 9cf62580d2ed22134516245686aafe2ccf543b06 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 26 May 2020 10:29:53 -0700 Subject: [PATCH 09/11] iad2: odcs: only one nic in iad2 Signed-off-by: Kevin Fenzi --- inventory/host_vars/odcs-backend01.iad2.fedoraproject.org | 2 ++ inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org | 2 ++ 2 files changed, 4 insertions(+) diff --git a/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org b/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org index 7127702806..4749b4efa7 100644 --- a/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org +++ b/inventory/host_vars/odcs-backend01.iad2.fedoraproject.org @@ -12,3 +12,5 @@ volgroup: /dev/vg_guests vmhost: bvmhost-x86-03.iad2.fedoraproject.org datacenter: iad2 + +virt_install_command: "{{ virt_install_command_one_nic }}" diff --git a/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org b/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org index 81f085ae65..74280c550b 100644 --- a/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org +++ b/inventory/host_vars/odcs-frontend01.iad2.fedoraproject.org @@ -12,3 +12,5 @@ volgroup: /dev/vg_guests vmhost: bvmhost-x86-04.iad2.fedoraproject.org datacenter: iad2 + +virt_install_command: "{{ virt_install_command_one_nic }}" From b122c66f2ffd4cf39b08044fa522e4717c326aa3 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Tue, 26 May 2020 20:12:24 +0200 Subject: [PATCH 10/11] Remove ip-address arg for replica-prepare --- roles/ipa/server/tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/ipa/server/tasks/main.yml b/roles/ipa/server/tasks/main.yml index 1daf32904a..744c6971cb 100644 --- a/roles/ipa/server/tasks/main.yml +++ b/roles/ipa/server/tasks/main.yml @@ -63,7 +63,6 @@ delegate_to: ipa01.phx2.fedoraproject.org command: ipa-replica-prepare --password={{ipa_dm_password}} - --ip-address={{eth0_ip}} {{inventory_hostname}} creates=/var/lib/ipa/replica-info-{{inventory_hostname}}.gpg tags: From 47d2193f22c562722778e13e3c7df97386e3648e Mon Sep 17 00:00:00 2001 From: Mohan Boddu Date: Tue, 26 May 2020 12:38:42 -0400 Subject: [PATCH 11/11] Fedora 30 EOL Signed-off-by: Mohan Boddu --- .../backend/files/koji-sync-listener.py | 2 +- roles/bodhi2/backend/files/new-updates-sync | 42 ------------------- roles/bodhi2/backend/tasks/main.yml | 2 +- .../platform-f30.yaml | 28 ------------- .../pkgdb-gnome-software-collections.json | 2 +- roles/releng/files/cloud-updates | 4 +- roles/releng/files/container-updates | 4 +- 7 files changed, 7 insertions(+), 77 deletions(-) delete mode 100644 roles/mbs/common/files/default-modules.production/platform-f30.yaml diff --git a/roles/bodhi2/backend/files/koji-sync-listener.py b/roles/bodhi2/backend/files/koji-sync-listener.py index dea70f876d..70690f1e92 100644 --- a/roles/bodhi2/backend/files/koji-sync-listener.py +++ b/roles/bodhi2/backend/files/koji-sync-listener.py @@ -23,7 +23,7 @@ def handle(content): sys.stdout.flush() # XXX If you modify this taglist. Please also modify the other copy in # bodhi2/backend/tasks/main.yml - taglist = 'f33 f33-container f33-modular f33-flatpak f32 f32-container f32-modular f32-flatpak f31 f31-container f31-flatpak f31-modular f30 f30-container f30-flatpak f30-modular epel8 epel8-playground epel8-modular epel7 dist-6E-epel module-package-list modular' + taglist = 'f33 f33-container f33-modular f33-flatpak f32 f32-container f32-modular f32-flatpak f31 f31-container f31-flatpak f31-modular epel8 epel8-playground epel8-modular epel7 dist-6E-epel module-package-list modular' cmd = [ '/usr/local/bin/owner-sync-pagure', '--package', package, diff --git a/roles/bodhi2/backend/files/new-updates-sync b/roles/bodhi2/backend/files/new-updates-sync index 8aae50be21..8dcaf56c5e 100755 --- a/roles/bodhi2/backend/files/new-updates-sync +++ b/roles/bodhi2/backend/files/new-updates-sync @@ -108,48 +108,6 @@ RELEASES = {'f32': {'topic': 'fedora', 'dest': os.path.join(FEDORAALTDEST, 'testing', '31', 'Modular')} ]}} }, - 'f30': {'topic': 'fedora', - 'version': '30', - 'modules': ['fedora', 'fedora-secondary'], - 'repos': {'updates': { - 'from': 'f30-updates', - 'ostrees': [{'ref': 'fedora/30/x86_64/updates/silverblue', - 'dest': OSTREEDEST}], - 'to': [{'arches': ['x86_64', 'armhfp', 'aarch64', 'source'], - 'dest': os.path.join(FEDORADEST, '30', 'Everything')}, - {'arches': ['i386', 'ppc64le', 's390x'], - 'dest': os.path.join(FEDORAALTDEST, '30', 'Everything')} - ]}, - 'updates-testing': { - 'from': 'f30-updates-testing', - 'ostrees': [{'ref': 'fedora/30/x86_64/testing/silverblue', - 'dest': OSTREEDEST}], - 'to': [{'arches': ['x86_64', 'aarch64', 'armhfp', 'source'], - 'dest': os.path.join(FEDORADEST, 'testing', '30', 'Everything')}, - {'arches': ['i386', 'ppc64le', 's390x'], - 'dest': os.path.join(FEDORAALTDEST, 'testing', '30', 'Everything')} - ]}} - }, - 'f30m': {'topic': 'fedora', - 'version': '30m', - 'modules': ['fedora', 'fedora-secondary'], - 'repos': {'updates': { - 'from': 'f30-modular-updates', - 'ostrees': [], - 'to': [{'arches': ['x86_64', 'aarch64', 'armhfp', 'source'], - 'dest': os.path.join(FEDORADEST, '30', 'Modular')}, - {'arches': ['i386', 'ppc64le', 's390x'], - 'dest': os.path.join(FEDORAALTDEST, '30', 'Modular')} - ]}, - 'updates-testing': { - 'from': 'f30-modular-updates-testing', - 'ostrees': [], - 'to': [{'arches': ['x86_64', 'aarch64', 'armhfp', 'source'], - 'dest': os.path.join(FEDORADEST, 'testing', '30', 'Modular')}, - {'arches': ['i386', 'ppc64le', 's390x'], - 'dest': os.path.join(FEDORAALTDEST, 'testing', '30', 'Modular')} - ]}} - }, 'epel8': {'topic': 'epel', 'version': '8', 'modules': ['epel'], diff --git a/roles/bodhi2/backend/tasks/main.yml b/roles/bodhi2/backend/tasks/main.yml index 46cff41920..31cf14cecf 100644 --- a/roles/bodhi2/backend/tasks/main.yml +++ b/roles/bodhi2/backend/tasks/main.yml @@ -73,7 +73,7 @@ # bodhi2/backend/files/koji-sync-listener.py # This cronjob runs only once a day. The listener script runs reactively. cron: name="owner-sync" minute="15" hour="4" user="root" - job="/usr/local/bin/lock-wrapper owner-sync '/usr/local/bin/owner-sync-pagure f33 f33-container f33-modular f33-flatpak f32 f32-container f32-modular f32-flatpak f31 f31-container f31-flatpak f31-modular f30 f30-container f30-flatpak f30-modular epel8 epel8-playground epel8-modular epel7 dist-6E-epel module-package-list modular'" + job="/usr/local/bin/lock-wrapper owner-sync '/usr/local/bin/owner-sync-pagure f33 f33-container f33-modular f33-flatpak f32 f32-container f32-modular f32-flatpak f31 f31-container f31-flatpak f31-modular epel8 epel8-playground epel8-modular epel7 dist-6E-epel module-package-list modular'" cron_file=update-koji-owner when: env == "production" tags: diff --git a/roles/mbs/common/files/default-modules.production/platform-f30.yaml b/roles/mbs/common/files/default-modules.production/platform-f30.yaml deleted file mode 100644 index 06080054c0..0000000000 --- a/roles/mbs/common/files/default-modules.production/platform-f30.yaml +++ /dev/null @@ -1,28 +0,0 @@ -data: - description: Fedora 30 traditional base - license: - module: [MIT] - name: platform - profiles: - buildroot: - rpms: [bash, bzip2, coreutils, cpio, diffutils, fedora-release, findutils, gawk, - glibc-minimal-langpack, grep, gzip, info, make, patch, redhat-rpm-config, - rpm-build, sed, shadow-utils, tar, unzip, util-linux, which, xz] - srpm-buildroot: - rpms: [bash, fedora-release, fedpkg-minimal, glibc-minimal-langpack, gnupg2, - redhat-rpm-config, rpm-build, shadow-utils] - stream: f30 - summary: Fedora 30 traditional base - context: 00000000 - version: 6 - xmd: - mbs: - buildrequires: {} - commit: f30 - requires: {} - koji_tag: module-f30-build - mse: TRUE - virtual_streams: [fedora] -document: modulemd -version: 1 - diff --git a/roles/pkgdb-proxy/files/pkgdb-gnome-software-collections.json b/roles/pkgdb-proxy/files/pkgdb-gnome-software-collections.json index 4b197dcad1..9a45d03f09 100644 --- a/roles/pkgdb-proxy/files/pkgdb-gnome-software-collections.json +++ b/roles/pkgdb-proxy/files/pkgdb-gnome-software-collections.json @@ -41,7 +41,7 @@ "dist_tag": ".fc30", "koji_name": "f30", "name": "Fedora", - "status": "Active", + "status": "EOL", "version": "30" }, { diff --git a/roles/releng/files/cloud-updates b/roles/releng/files/cloud-updates index 0ef075f871..d057085244 100644 --- a/roles/releng/files/cloud-updates +++ b/roles/releng/files/cloud-updates @@ -1,6 +1,6 @@ #Fedora 30 Cloud nightly compose -MAILTO=releng-cron@lists.fedoraproject.org -15 6 * * * root TMPDIR=`mktemp -d /tmp/CloudF30.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f30 && LANG=en_US.UTF-8 ./cloud-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR +#MAILTO=releng-cron@lists.fedoraproject.org +#15 6 * * * root TMPDIR=`mktemp -d /tmp/CloudF30.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f30 && LANG=en_US.UTF-8 ./cloud-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR #Fedora 32 Cloud nightly compose MAILTO=releng-cron@lists.fedoraproject.org diff --git a/roles/releng/files/container-updates b/roles/releng/files/container-updates index ac0dc25bae..a968205dbc 100644 --- a/roles/releng/files/container-updates +++ b/roles/releng/files/container-updates @@ -3,8 +3,8 @@ MAILTO=releng-cron@lists.fedoraproject.org 45 5 * * * root TMPDIR=`mktemp -d /tmp/containerF31.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f31 && LANG=en_US.UTF-8 ./container-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR # Fedora 30 Container Updates nightly compose -MAILTO=releng-cron@lists.fedoraproject.org -45 7 * * * root TMPDIR=`mktemp -d /tmp/containerF30.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f30 && LANG=en_US.UTF-8 ./container-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR +#MAILTO=releng-cron@lists.fedoraproject.org +#45 7 * * * root TMPDIR=`mktemp -d /tmp/containerF30.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f30 && LANG=en_US.UTF-8 ./container-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR # Fedora 32 Container Updates nightly compose MAILTO=releng-cron@lists.fedoraproject.org