added multi-tenant support
diff --git a/scripts/addTenant.sh b/scripts/addTenant.sh
new file mode 100755
index 0000000..ecc4f18
--- /dev/null
+++ b/scripts/addTenant.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+if [ "$#" -eq 1 ]; then
+ echo ""
+ curl -i --header "Content-type: application/json" --request POST -u onos:rocks --data '{
+ "tenants": [
+ {
+ "fpc-mobility": {},
+ "fpc-policy": {},
+ "fpc-topology": {},
+ "tenant-id": "'$1'"
+ }
+ ]
+ }' 'http://localhost:8181/onos/restconf/data/ietf-dmm-fpcagent'
+ echo ""
+else
+ echo "usage: "$0" tenantId"
+fi