tom

Added a tool to fetch dev/test VMs from the local share.

1 +#!/bin/bash
2 +#-------------------------------------------------------------------------------
3 +# Remotely fetches the ONOS test VMs from a local share into ~/Downloads.
4 +#-------------------------------------------------------------------------------
5 +
6 +[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7 +. $ONOS_ROOT/tools/build/envDefaults
8 +
9 +mkdir -p /tmp/onos
10 +mount -t smbfs smb://guest:@10.254.1.15/onos /tmp/onos
11 +cp /tmp/onos/*.ova ~/Downloads