jaegonkim
Committed by Gerrit Code Review

adding '--noproxy localhost' option in the curl for using localhost where OS has proxy setting

Change-Id: Ia9de0cd18a3a41ab64de6c0babce9ab25f925859
...@@ -10,7 +10,7 @@ app=${3} ...@@ -10,7 +10,7 @@ app=${3}
10 export URL=http://$node:8181/onos/v1/applications 10 export URL=http://$node:8181/onos/v1/applications
11 export HDR="-HContent-Type:application/octet-stream" 11 export HDR="-HContent-Type:application/octet-stream"
12 export HAJ="-HContent-Type:application/json" 12 export HAJ="-HContent-Type:application/json"
13 -export curl="curl -sS --user $ONOS_WEB_USER:$ONOS_WEB_PASS" 13 +export curl="curl -sS --user $ONOS_WEB_USER:$ONOS_WEB_PASS --noproxy localhost "
14 14
15 # Prints usage help 15 # Prints usage help
16 function usage { 16 function usage {
......