onos/tools/tutorials/vm/exportVM
Thomas Vachuska e7013e96ff Updated tutorial VM to 1.14.0
Change-Id: I46842f52e3b3068718fc125c9fbfe80e069151f4
2018-09-24 22:22:14 +00:00

12 lines
556 B
Bash
Executable File

#!/bin/bash
# -----------------------------------------------------------------------------
# Exports the ONOS Tutorial VM into an OVA file for publishing.
# -----------------------------------------------------------------------------
export VER=1.14.0
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