mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
11 lines
299 B
Bash
Executable File
11 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Starts the specified mininet topology.
|
|
# -----------------------------------------------------------------------------
|
|
cd $(dirname $0)
|
|
|
|
topo=${1:-att-onos.py}
|
|
|
|
[ -n "$1" ] && shift
|
|
sudo python $topo "$@"
|