blob: 792627cbfd16e1911a1f92fd0ae5785f21a38a04 [file] [log] [blame]
Thomas Vachuskac419f0e2018-02-07 14:24:46 -08001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Exports the ONOS Tutorial VM into an OVA file for publishing.
4# -----------------------------------------------------------------------------
5
Thomas Vachuska61f0e0b2018-05-15 14:08:11 -07006export VER=1.13.1
Thomas Vachuskac419f0e2018-02-07 14:24:46 -08007export OVA=/tmp/onos-tutorial-$VER.ova
8rm -f $OVA
9vboxmanage export "ONOS Tutorial" --output $OVA --manifest \
10 --vsys 0 --product "ONOS" --vendor "Open Networking Foundation" --version "$VER" \
11 --description "ONOS Basic Tutorial VM; 3 node cluster using docker; mininet topologies"
12wc -c $OVA