mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 10:21:52 +02:00
14 lines
411 B
Bash
Executable File
14 lines
411 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Launches ONOS REST API docs GUI on the specified node.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
host=${1:-$OCI}
|
|
host=${host:-localhost}
|
|
|
|
unamestr=`uname`
|
|
if [[ "$unamestr" == 'Linux' ]]; then
|
|
xdg-open http://$host:8181/onos/v1/docs
|
|
else
|
|
open http://$host:8181/onos/v1/docs
|
|
fi |