releng: rename and clean up cloud and container crons and times
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
56beaee578
commit
1e63bb9cf1
4 changed files with 16 additions and 26 deletions
11
roles/releng/files/cloud-updates
Normal file
11
roles/releng/files/cloud-updates
Normal file
|
@ -0,0 +1,11 @@
|
|||
#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
|
||||
|
||||
#Fedora 29 Cloud nightly compose
|
||||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
15 7 * * * root TMPDIR=`mktemp -d /tmp/CloudF29.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f29 && LANG=en_US.UTF-8 ./cloud-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
||||
|
||||
#Fedora 28 Cloud nightly compose
|
||||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
15 8 * * * root TMPDIR=`mktemp -d /tmp/CloudF28.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f28 && LANG=en_US.UTF-8 ./cloud-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
|
@ -2,7 +2,7 @@
|
|||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
45 5 * * * root TMPDIR=`mktemp -d /tmp/containerF28.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f28 && LANG=en_US.UTF-8 ./container-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
||||
|
||||
# Fedora 30 Docker Updates nightly compose
|
||||
# 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
|
||||
|
|
@ -1,21 +0,0 @@
|
|||
#Fedora 28 two-week updates nightly compose
|
||||
# XXX: this has been moved to the updates compose:
|
||||
# https://kojipkgs.fedoraproject.org/compose/updates/f28-updates/
|
||||
#MAILTO=releng-cron@lists.fedoraproject.org
|
||||
#15 8 * * * root TMPDIR=`mktemp -d /tmp/twoweekF28.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f28 && LANG=en_US.UTF-8 ./twoweek-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
||||
|
||||
#Fedora 27 two-week updates nightly compose
|
||||
#MAILTO=releng-cron@lists.fedoraproject.org
|
||||
#15 5 * * * root TMPDIR=`mktemp -d /tmp/twoweekF27.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f27 && LANG=en_US.UTF-8 ./twoweek-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
||||
|
||||
#Fedora 30 Cloud nightly compose
|
||||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
15 5 * * * 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 29 Cloud nightly compose
|
||||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
15 7 * * * root TMPDIR=`mktemp -d /tmp/CloudF29.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f29 && LANG=en_US.UTF-8 ./cloud-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
||||
|
||||
#Fedora 28 Cloud nightly compose
|
||||
MAILTO=releng-cron@lists.fedoraproject.org
|
||||
15 6 * * * root TMPDIR=`mktemp -d /tmp/CloudF28.XXXXXX` && pushd $TMPDIR && git clone -n https://pagure.io/pungi-fedora.git && cd pungi-fedora && git checkout f28 && LANG=en_US.UTF-8 ./cloud-nightly.sh RC-$(date "+\%Y\%m\%d").0 && popd && rm -rf $TMPDIR
|
|
@ -137,14 +137,14 @@
|
|||
copy: src="rawhide" dest=/etc/cron.d/rawhide
|
||||
when: inventory_hostname.startswith('rawhide-composer')
|
||||
|
||||
# put cron job in for two-week nightly compose
|
||||
- name: twoweek compose cron
|
||||
copy: src="twoweek-updates" dest=/etc/cron.d/twoweek-updates
|
||||
# put cron job in for cloud nightly compose
|
||||
- name: cloud updates compose cron
|
||||
copy: src="cloud-updates" dest=/etc/cron.d/cloud-updates
|
||||
when: inventory_hostname.startswith('compose-x86-01')
|
||||
|
||||
# put cron job in for docker nightly compose
|
||||
- name: docker compose cron
|
||||
copy: src="docker-updates" dest=/etc/cron.d/docker-updates
|
||||
copy: src="container-updates" dest=/etc/cron.d/container-updates
|
||||
when: inventory_hostname.startswith('compose-x86-01')
|
||||
|
||||
- name: install compose /etc/httpd/conf.d/compose.conf file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue