blob: 567f7f5bd622374e5cea5b9e734a82ef2d0c2aeb [file] [log] [blame]
tom26edf052014-10-02 13:57:03 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom26edf052014-10-02 13:57:03 -07003# Remotely fetches the ONOS test VMs from a local share into ~/Downloads.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom26edf052014-10-02 13:57:03 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9mkdir -p /tmp/onos
10mount -t smbfs smb://guest:@10.254.1.15/onos /tmp/onos
Yuta HIGUCHI3741a402014-11-13 09:56:37 -080011cp /tmp/onos/onos*.ova ~/Downloads