diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-04-10 13:01:30 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-04-10 13:13:33 -0500 |
commit | 4ac37bffd664bbc2d6d419d9420393193573320d (patch) | |
tree | 92f0f1e1903488ec0cf2a3ae9835690f085214ea /auth/sample/bin/service.sh | |
parent | dcd0cb51ce490f0d790713a2c1e9dc5fda36e70d (diff) |
switch Internal/External Locator Names for Dublin
Issue-ID: AAF-808
Change-Id: If7c600cddef0f7d0fce1a8f7b1518d9ffe0983fe
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/sample/bin/service.sh')
-rw-r--r-- | auth/sample/bin/service.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/auth/sample/bin/service.sh b/auth/sample/bin/service.sh index 2b964b1c..54a1cc58 100644 --- a/auth/sample/bin/service.sh +++ b/auth/sample/bin/service.sh @@ -135,7 +135,9 @@ if [ ! -e $LOCAL/org.osaaf.aaf.props ]; then echo aaf_locate_url=${AAF_LOCATE_URL} >> ${TMP} for P in `env`; do if [[ "$P" == aaf_locator* ]]; then - echo "$P" >> ${TMP} + S="${P/_helm/.helm}" + S="${S/_oom/.oom}" + echo "$S" >> ${TMP} fi done |