From df0c0cf6c8eb6bc6d3e4df5c5e3275dc425f4f6f Mon Sep 17 00:00:00 2001 From: Marco Platania Date: Mon, 21 Aug 2017 11:27:39 -0400 Subject: Parametrize ONAP installation repositories - Remove hardcoded repository names from installation scripts - Add parameters in Heat template - Use those parameters in the install scripts Change-Id: I3feadda7da22c282bd00618903de9aac1c01055b Issue-ID: UCA-33 Signed-off-by: Marco Platania --- boot/portal_install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'boot/portal_install.sh') diff --git a/boot/portal_install.sh b/boot/portal_install.sh index 6b1c34f0..9e7ef2b5 100644 --- a/boot/portal_install.sh +++ b/boot/portal_install.sh @@ -7,6 +7,7 @@ DNS_IP_ADDR=$(cat /opt/config/dns_ip_addr.txt) CLOUD_ENV=$(cat /opt/config/cloud_env.txt) GERRIT_BRANCH=$(cat /opt/config/gerrit_branch.txt) MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1) +CODE_REPO=$(cat /opt/config/remote_repo.txt) # Add host name to /etc/host to avoid warnings in openstack images if [[ $CLOUD_ENV != "rackspace" ]] @@ -92,5 +93,5 @@ resolvconf -u # Clone Gerrit repository and run docker containers mkdir -p /PROJECT/OpenSource/UbuntuEP/logs cd /opt -git clone -b $GERRIT_BRANCH --single-branch http://gerrit.onap.org/r/portal.git +git clone -b $GERRIT_BRANCH --single-branch $CODE_REPO ./portal_vm_init.sh \ No newline at end of file -- cgit 1.2.3-korg