Skip to content
Snippets Groups Projects
Commit cce3dbcd authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible Debian: allow to push .buildinfo files from coccia

parent f7158a9e
No related branches found
No related tags found
No related merge requests found
......@@ -101,6 +101,10 @@ elif [[ "$*" =~ ^rsync\ --server\ .*\ \.\ /srv/workspace/chroots/.* ]] ; then
elif [[ "$*" =~ ^rsync\ --server\ .*\ \.\ /srv/reproducible-results/.* ]] ; then
# allow to push files to /srv/reproducible-results/
exec rsync --server "$3" . "$5" ; croak "Exec failed";
elif [[ "$*" =~ ^rsync\ --server\ .*\ \.\ /var/lib/jenkins/userContent/reproducible/debian/ftp-master.debian.org/buildinfo/.* ]] ; then
# allow to push buildinfo files from coccia
# FIXME: limit this to pb7
exec rsync --server "$3" . "$5" ; croak "Exec failed";
elif [[ "$*" =~ ^mkdir\ -p\ /srv/d-i/isos.* ]] ; then
exec mkdir -p "$3" ; croak "Exec failed";
elif [[ "$*" =~ ^rm\ -r\ /srv/reproducible-results/tmp.* ]] ; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment