diff options
author | Christopher Lott (cl778h) <clott@research.att.com> | 2017-08-07 10:16:50 -0400 |
---|---|---|
committer | Christopher Lott (cl778h) <clott@research.att.com> | 2017-08-07 10:17:40 -0400 |
commit | 49e21f89f6438a9e6dbf25d4074314d529b347de (patch) | |
tree | b65bfa786f59fd66188ec8076b022ec1e90879a7 | |
parent | 0c184777b805dbef3bc43d0084ca578d8b5aba99 (diff) |
Drop variables now published elsewhere
Changes were merged to the os_settings.sh script within portal/deliveries
so drop the redundant assignments in the portal_vm_init.sh script.
Change-Id: If0c61dac343aebf4488525184597807095649307
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
-rwxr-xr-x | boot/portal_vm_init.sh | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/boot/portal_vm_init.sh b/boot/portal_vm_init.sh index 942fc52d..5f34aae8 100755 --- a/boot/portal_vm_init.sh +++ b/boot/portal_vm_init.sh @@ -14,14 +14,9 @@ NEXUS_USERNAME=$(cat /opt/config/nexus_username.txt) NEXUS_PASSWD=$(cat /opt/config/nexus_password.txt) NEXUS_DOCKER_REPO=$(cat /opt/config/nexus_docker_repo.txt) DOCKER_IMAGE_VERSION=$(cat /opt/config/docker_version.txt) -source portal/deliveries/os_settings.sh -# Remove the following lines after merging change to os_settings.sh: -DB_VOL_NAME=data_vol_portal -EP_TAG_NAME=portalapps -DB_TAG_NAME=portaldb -WMS_TAG_NAME=portalwms -# End os_settings.sh dupe lines +# Get container, image and tag names used below +source portal/deliveries/os_settings.sh # Unpack property files unzip -o portal/deliveries/etc.zip -d /PROJECT/OpenSource/UbuntuEP/ |