blob: 608c5d36eaa71849680588a855d6ff9333f31759 [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 Vachuskae7013e92018-09-12 01:18:43 -07006export VER=1.14.0
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