blob: 64a66c9d75ccb35161d8f2e33e6b14f47d67acb9 [file] [log] [blame]
Thomas Vachuskadcadc2b2014-10-29 12:03:29 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# ONOS topology configuration uploader.
4# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
Thomas Vachuskaf9879c52016-01-15 11:12:19 -08009echo "This facility has been deprecated and will be removed in 1.6.0 (Goldeneye) release!!!"
10
Thomas Vachuska85314292014-11-14 17:52:12 -080011node="${1:-$OCI}"
Thomas Vachuskadcadc2b2014-10-29 12:03:29 -070012file="${2:-$ONOS_ROOT/tools/test/topos/oe-linear-3.json}"
Ayaka Koshibed88b81d2015-09-17 17:52:27 -070013url="${3:-config/topology}"
Thomas Vachuskadcadc2b2014-10-29 12:03:29 -070014
Thomas Vachuska3c831fa2015-08-17 18:44:15 -070015curl -sS --fail -L --user $ONOS_WEB_USER:$ONOS_WEB_PASS \
16 -X POST -H 'Content-Type:application/json' \
Ayaka Koshibed88b81d2015-09-17 17:52:27 -070017 http://$node:8181/onos/v1/${url} -d@$file