aboutsummaryrefslogtreecommitdiffstats
path: root/jjb/pre-fetch/include-rsync-prefetch.sh
blob: 848571d24abcc45e8b74bd976c7b1a08760028b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

set -x
set -e

ls -alh



export RSYNCSRC="$(pwd)/mirror/"
export RSYNCDST="jenkins-slave@10.30.72.8:/srv/download/AGL/mirror/"

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



exit 0