This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, master has been updated
       via  ebc43cf5f22cb6efa1f9a2001df6e7a4b5db8a1f (commit)
      from  839612332550d1e6cf5de7773c5d1b64dc8996b6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=ebc43cf5f22cb6efa1f9a2001df6e7a4b5db8a1f

commit ebc43cf5f22cb6efa1f9a2001df6e7a4b5db8a1f
Author: Franck Villaume <[email protected]>
Date:   Fri May 10 15:37:29 2019 +0200

    no ssh key check in rsync

diff --git a/tests/buildbot/fusionforge-func_tests.sh 
b/tests/buildbot/fusionforge-func_tests.sh
index 8c5a920..420ba82 100755
--- a/tests/buildbot/fusionforge-func_tests.sh
+++ b/tests/buildbot/fusionforge-func_tests.sh
@@ -161,7 +161,7 @@ else
     setup_epel_repo
     ssh -o 'StrictHostKeyChecking=no' root@$HOST "yum --enablerepo=epel 
install -y haveged"
 fi
-rsync -av --delete autoinstall src tests root@$HOST:/usr/src/fusionforge/
+rsync -e "ssh -o StrictHostKeyChecking=no" -av --delete autoinstall src tests 
root@$HOST:/usr/src/fusionforge/
 if [ $INSTALL_METHOD = "src" ]; then
     ssh -o 'StrictHostKeyChecking=no' root@$HOST 
"/usr/src/fusionforge/autoinstall/install-src.sh"
 else
@@ -181,10 +181,10 @@ copy_logs
 if [ $retcode = 0 ] ; then
     case $INSTALL_METHOD in
        deb)
-           rsync -av --delete root@$HOST:/usr/src/debian-repository/local/ 
$WORKSPACE/packages/
+           rsync -e "ssh -o StrictHostKeyChecking=no" -av --delete 
root@$HOST:/usr/src/debian-repository/local/ $WORKSPACE/packages/
            ;;
        rpm)
-           rsync -av --delete root@$HOST:/usr/src/fusionforge/build/RPMS/ 
$WORKSPACE/packages/
+           rsync -e "ssh -o StrictHostKeyChecking=no" -av --delete 
root@$HOST:/usr/src/fusionforge/build/RPMS/ $WORKSPACE/packages/
            ;;
     esac
 fi
diff --git a/tests/buildbot/push-packages-to-repositories.sh 
b/tests/buildbot/push-packages-to-repositories.sh
index 462b86e..26ba72f 100755
--- a/tests/buildbot/push-packages-to-repositories.sh
+++ b/tests/buildbot/push-packages-to-repositories.sh
@@ -38,14 +38,14 @@ case $method in
        sed -i -e "s/^Distribution:.*/Distribution: $dist-$branch/" 
fusionforge*changes
        debsign -m"FusionForge buildbot" *changes
        dput buildbot fusionforge*changes
-       rsync -av --delete-after --exclude=/mini-dinstall --exclude=/*.db 
--delete-excluded /var/lib/jenkins/deb/ 
[email protected]:/home/groups/fusionforge/htdocs/deb/
+       rsync -e "ssh -o StrictHostKeyChecking=no" -av --delete-after 
--exclude=/mini-dinstall --exclude=/*.db --delete-excluded 
/var/lib/jenkins/deb/ 
[email protected]:/home/groups/fusionforge/htdocs/deb/
        ;;
     rpm)
        rpmsign --addsign $WORKSPACE/packages/*/*.rpm
        (cd $WORKSPACE/packages/ && createrepo .)
        gpg --detach-sign --armor $WORKSPACE/packages/repodata/repomd.xml
-       rsync -av --delete $WORKSPACE/packages/ 
/var/lib/jenkins/rpm/$dist-$branch/
-       rsync -av --delete-after  /var/lib/jenkins/rpm/ 
[email protected]:/home/groups/fusionforge/htdocs/rpm/
+       rsync -e "ssh -o StrictHostKeyChecking=no" -av --delete 
$WORKSPACE/packages/ /var/lib/jenkins/rpm/$dist-$branch/
+       rsync -e "ssh -o StrictHostKeyChecking=no" -av --delete-after  
/var/lib/jenkins/rpm/ 
[email protected]:/home/groups/fusionforge/htdocs/rpm/
        ;;
     *)
        echo "Unknown install method"

-----------------------------------------------------------------------

Summary of changes:
 tests/buildbot/fusionforge-func_tests.sh        | 6 +++---
 tests/buildbot/push-packages-to-repositories.sh | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to