blob: 792627cbfd16e1911a1f92fd0ae5785f21a38a04 [file] [log] [blame]
#!/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