tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | #------------------------------------------------------------------------------- |
| 3 | # Launches ONOS GUI on the specified node. |
| 4 | #------------------------------------------------------------------------------- |
| 5 | |
Pavlin Radoslavov | 4b15407 | 2014-10-15 10:49:23 -0700 | [diff] [blame^] | 6 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 7 | . $ONOS_ROOT/tools/build/envDefaults |
| 8 | |
tom | 1a2908c | 2014-09-23 16:37:39 -0700 | [diff] [blame] | 9 | host=${1:-$OCI} |
| 10 | host=${host:-localhost} |
| 11 | |
| 12 | open http://$host:8181/onos/tvue |