blob: bc0127cf2a3425d454a0494192f284f26cb6d18d (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# -----------------------------------------------------------------------------
# Launches ONOS REST API docs GUI on the specified node.
# -----------------------------------------------------------------------------
host=${1:-$OCI}
host=${host:-localhost}
open http://$host:8181/onos/v1/docs
|