tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame^] | 1 | #!/bin/bash |
2 | #------------------------------------------------------------------------------- | ||||
3 | # Pushes ONOS distributable bits in onos.tar.gz to a remote machine. | ||||
4 | #------------------------------------------------------------------------------- | ||||
5 | |||||
6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 | ||||
7 | . $ONOS_ROOT/tools/build/envDefaults | ||||
8 | |||||
9 | remote=$ONOS_USER@${1:-$OCI} | ||||
10 | |||||
11 | scp $ONOS_TAR $remote:/tmp |