aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/snapshot-jjb-container/include-rsync-container.sh
blob: e2ee1b9a01163e61427073a8b680acc6b1c7c5e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

#set -x
set -e

#ls -alh

export RSYNCSRC="$(pwd)/container/"
export RSYNCDST="jenkins-slave@10.30.72.8:/srv/download/AGL/snapshots/sdk/docker/"

echo " rsync -avr -e \"ssh -o StrictHostKeyChecking=no\" $RSYNCSRC $RSYNCDST "

exit 0