diff options
author | Taka Cho <takamune.cho@att.com> | 2020-11-12 17:48:30 -0500 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2020-11-30 10:20:55 -0500 |
commit | 8583b5150f8ccf3a1d1b0e4849346024763aa838 (patch) | |
tree | f36885b89485b2144c0ab287fe9f06fbdfcb5cd8 /policy-management/src/main/server-gen/bin/rest-add-controller | |
parent | dc6c4a21d46909dad59f4bd16cb6d4fc29fcce77 (diff) |
move all bash to ash shell scripts
this gerrit would be the first step
to not to use any GPL-3.0 and plus license
Issue-ID: POLICY-2847
Change-Id: I09a571f14ef8c6983f9051068c2bad5acc173787
Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'policy-management/src/main/server-gen/bin/rest-add-controller')
-rw-r--r-- | policy-management/src/main/server-gen/bin/rest-add-controller | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/policy-management/src/main/server-gen/bin/rest-add-controller b/policy-management/src/main/server-gen/bin/rest-add-controller index 1c7dfbc1..3bd02be8 100644 --- a/policy-management/src/main/server-gen/bin/rest-add-controller +++ b/policy-management/src/main/server-gen/bin/rest-add-controller @@ -1,4 +1,4 @@ -#! /bin/bash +#!/usr/bin/env ash # ============LICENSE_START======================================================= # ONAP @@ -8,7 +8,7 @@ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at -# +# # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software @@ -22,14 +22,14 @@ source $POLICY_HOME/etc/profile.d/env.sh json=$1-controller.rest.json -if [ -f ${json} ]; then - if [[ -n ${TELEMETRY_PASSWORD} ]]; then - curl -k --silent --user ${TELEMETRY_USER}:${TELEMETRY_PASSWORD} -X POST --data @${json} --header "Content-Type: application/json" \ - https://localhost:${TELEMETRY_PORT}/policy/pdp/engine/controllers - else - curl -k --silent -X POST --data @${json} --header "Content-Type: application/json" \ - https://localhost:${TELEMETRY_PORT}/policy/pdp/engine/controllers - fi +if [ -f "${json}" ]; then + if [ -n "${TELEMETRY_PASSWORD}" ]; then + curl -k --silent --user ${TELEMETRY_USER}:${TELEMETRY_PASSWORD} -X POST --data @${json} --header "Content-Type: application/json" \ + https://localhost:${TELEMETRY_PORT}/policy/pdp/engine/controllers + else + curl -k --silent -X POST --data @${json} --header "Content-Type: application/json" \ + https://localhost:${TELEMETRY_PORT}/policy/pdp/engine/controllers + fi else - echo "Usage: rest-add-controller.sh closed-loop-sample|reporter|sepc|vsegw|.. (or any other config file ending with *-controller.rest.json)" + echo "Usage: rest-add-controller.sh closed-loop-sample|reporter|sepc|vsegw|.. (or any other config file ending with *-controller.rest.json)" fi |