Thomas Vachuska | dcadc2b | 2014-10-29 12:03:29 -0700 | [diff] [blame] | 1 | #!/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 Vachuska | 8531429 | 2014-11-14 17:52:12 -0800 | [diff] [blame] | 9 | node="${1:-$OCI}" |
Thomas Vachuska | dcadc2b | 2014-10-29 12:03:29 -0700 | [diff] [blame] | 10 | file="${2:-$ONOS_ROOT/tools/test/topos/oe-linear-3.json}" |
| 11 | |
| 12 | curl -sS --fail -L -X POST -H 'Content-Type:application/json' \ |
| 13 | http://$node:8181/onos/v1/config/topology -d@$file |