Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tom
2014-10-02 13:57:03 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
26edf05d435eded820e5c6291ddeb6e170dbce59
26edf05d
1 parent
747a2130
Added a tool to fetch dev/test VMs from the local share.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
tools/test/bin/onos-fetch-vms
tools/test/bin/onos-fetch-vms
0 → 100755
View file @
26edf05
#!/bin/bash
#-------------------------------------------------------------------------------
# Remotely fetches the ONOS test VMs from a local share into ~/Downloads.
#-------------------------------------------------------------------------------
[
! -d
"
$ONOS_ROOT
"
]
&&
echo
"ONOS_ROOT is not defined"
>&2
&&
exit
1
.
$ONOS_ROOT
/tools/build/envDefaults
mkdir -p /tmp/onos
mount -t smbfs smb://guest:@10.254.1.15/onos /tmp/onos
cp /tmp/onos/
*
.ova ~/Downloads
Please
register
or
login
to post a comment