Remove ECOMP in headers
[clamp.git] / src / test / resources / http-cache / start_http_cache.sh
index 0f32c93..a8ff96a 100755 (executable)
 # limitations under the License.
 # ============LICENSE_END============================================
 # ===================================================================
-# ECOMP is a trademark and service mark of AT&T Intellectual Property.
+#
 ###
 
+echo "Starting HTTP CACHE python script"
 for i in "$@"
 do
 case $i in
-    --python_proxyaddress=*)
+     --python_proxyaddress=*)
       python_proxyaddress="--proxyaddress ${i#*=}"
       echo "- Using python_proxyaddress and set it to: $python_proxyaddress"
       shift # past argument=value
       ;;
-    --http_proxyaddress=*)
+     --http_proxyaddress=*)
       export http_proxy="${i#*=}"
-      export https_proxy=$http_proxy
+      export https_proxy="${i#*=}"
       echo "- Defining http_proxy/https_proxy env variables to: $http_proxy"
       shift # past argument=value
       ;;