mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
26 lines
717 B
Bash
Executable File
26 lines
717 B
Bash
Executable File
#!/bin/bash
|
|
#! usage: onos-create-intent target-onos-instance name point deviceId1 deviceId2
|
|
#! onos-create-intent target-onos-instance name host hostId1 hostId2
|
|
# -----------------------------------------------------------------------------
|
|
# Installs a new intent using the ONOS CLI
|
|
# -----------------------------------------------------------------------------
|
|
|
|
[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
|
|
. $ONOS_ROOT/tools/build/envDefaults
|
|
|
|
aux=/tmp/stc-$$.log
|
|
trap "rm -f $aux 2>/dev/null" EXIT
|
|
target=$1
|
|
name=$2
|
|
type=$3
|
|
arg1=$4
|
|
arg2=$5
|
|
arg3=$6
|
|
arg4=$7
|
|
arg5=$8
|
|
|
|
set -x
|
|
|
|
onos -f $target "onos:add-${type}-intent" --key $name "${arg1}" "${arg2}" "${arg3}" "${arg4}" "${arg5}"
|
|
|