onos-app
1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# -----------------------------------------------------------------------------
# Tool to manage ONOS applications using REST API.
# -----------------------------------------------------------------------------
node=${1:-$OCI}
cmd=${2:-list}
app=${3}
export URL=http://$node:8181/onos/v1/applications
export HDR="-HContent-Type:application/octet-stream"
export curl="curl -sS"
function usage {
echo "usage: onos-app {install|install!} <app-file>" >&2
echo " onos-app {reinstall|reinstall!} <app-name> <app-file>" >&2
echo " onos-app {activate|deactivate|uninstall} <app-name>" >&2
exit 1
}
case $cmd in
list) $curl -X GET $URL;;
install)
[ $# -lt 3 -o ! -f $app ] && usage
$curl -X POST $HDR $URL --data-binary @$app;;
install!)
[ $# -lt 3 -o ! -f $app ] && usage
$curl -X POST $HDR $URL?activate=true --data-binary @$app;;
reinstall)
[ $# -lt 4 -o ! -f $4 ] && usage
$curl -X DELETE $URL/$app
$curl -X POST $HDR $URL --data-binary @$4;;
reinstall!)
[ $# -lt 4 -o ! -f $4 ] && usage
$curl -X DELETE $URL/$app
$curl -X POST $HDR $URL?activate=true --data-binary @$4;;
uninstall)
[ $# -lt 3 ] && usage
$curl -X DELETE $URL/$app;;
activate)
[ $# -lt 3 ] && usage
$curl -X POST $URL/$app/active;;
deactivate)
[ $# -lt 3 ] && usage
$curl -X DELETE $URL/$app/active;;
*) usage;;
esac