blob: 64821030fe95fd96c23aaa1a08311457270c9e4e [file] [log] [blame]
Ray Milkeybba71382015-08-26 13:09:23 -07001#!/bin/bash
2#! usage: onos-create-intent target-onos-instance name point deviceId1 deviceId2
3#! onos-create-intent target-onos-instance name host hostId1 hostId2
4# -----------------------------------------------------------------------------
5# Installs a new intent using the ONOS CLI
6# -----------------------------------------------------------------------------
7
8[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
9. $ONOS_ROOT/tools/build/envDefaults
10
11aux=/tmp/stc-$$.log
12trap "rm -f $aux 2>/dev/null" EXIT
13target=$1
14name=$2
15type=$3
16arg1=$4
17arg2=$5
18
19set -x
20
21onos $target "onos:add-${type}-intent" "${arg1}" "${arg2}" >> $aux
22result=$?
23cat $aux
24
25if [ $result -eq 0 ]; then
26 id=$(cat $aux | sed -e "1d" | sed -e "s/^[a-zA-Z]*{//" | sed -e "s/,.*$//" | sed -e "s/^...//")
27 echo @stc ${name}Id=${id}
28fi
29
30
31exit $result
32