onos/tools/tutorials/vm/exportVM
Thomas Vachuska 61f0e0b624 Updating tutorial assets to work with 1.13.1
Change-Id: Icfa6c0b9a35e869b68a7c1ff394144a3ba0256c4
2018-05-15 14:25:40 -07:00

12 lines
556 B
Bash
Executable File

#!/bin/bash
# -----------------------------------------------------------------------------
# Exports the ONOS Tutorial VM into an OVA file for publishing.
# -----------------------------------------------------------------------------
export VER=1.13.1
export OVA=/tmp/onos-tutorial-$VER.ova
rm -f $OVA
vboxmanage export "ONOS Tutorial" --output $OVA --manifest \
--vsys 0 --product "ONOS" --vendor "Open Networking Foundation" --version "$VER" \
--description "ONOS Basic Tutorial VM; 3 node cluster using docker; mininet topologies"
wc -c $OVA