blob: ade760f50773ca05263989a7c7d8efe0ffc1b640 [file] [log] [blame]
Hong Guan62f78a62017-11-21 11:00:42 -05001#!/bin/sh
2
Hong Guan9000c852018-05-02 13:25:14 -04003# ============LICENSE_START==========================================
4# ===================================================================
5# Copyright (c) 2017 AT&T
6#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#============LICENSE_END============================================
19
Hong Guan62f78a62017-11-21 11:00:42 -050020#
21PUBIP="$1"
22PVTIP="$2"
23NEXUS_REPO="$3"
24DOCKER_REPO="$4"
25NEXUS_USERNAME="$5"
26NEXUS_PASSWORD="$6"
27ARTIFACTS_VERSION="$7"
28DNS_IP="$8"
29GERRIT_BRANCH="$9"
30CLOUD_ENV="$10"
31EXETERNAL_DNS="$11"
32DMAAP_TOPIC="$12"
33OPENSTACK_USERNAME="$13"
34TENANT_ID="$14"
35OPENSTACK_API_KEY="$15"
36OPENSTACK_REGION="$16"
37KEYSTONE="$17"
38SO_REPO="$18"
39DOCKER_VERSION="$19"
40
41export HOSTNAME=`hostname`
42echo 127.0.1.1 $HOSTNAME >>/etc/hosts
43echo $PVTIP $HOSTNAME >>/etc/hosts
44echo $PUBIP $HOSTNAME >>/etc/hosts
45
46
47mkdir /opt/config
48chmod 777 /opt/config
49echo $PUBIP > /opt/config/public_ip.txt
50echo $NEXUS_REPO > /opt/config/nexus_repo.txt
51echo $DOCKER_REPO > /opt/config/nexus_docker_repo.txt
52echo $NEXUS_USERNAME > /opt/config/nexus_username.txt
53echo $NEXUS_PASSWORD > /opt/config/nexus_password.txt
54echo $ARTIFACTS_VERSION > /opt/config/artifacts_version.txt
55echo $DNS_IP > /opt/config/dns_ip_addr.txt
56echo $DOCKER_VERSION > /opt/config/docker_version.txt
57echo $GERRIT_BRANCH > /opt/config/gerrit_branch.txt
58echo $CLOUD_ENV > /opt/config/cloud_env.txt
59echo $EXETERNAL_DNS > /opt/config/external_dns.txt
60echo $DMAAP_TOPIC > /opt/config/dmaap_topic.txt
61echo $OPENSTACK_USERNAME > /opt/config/openstack_username.txt
62echo $TENANT_ID > /opt/config/tenant_id.txt
63echo $OPENSTACK_API_KEY > /opt/config/openstack_api_key.txt
64echo $OPENSTACK_REGION > /opt/config/openstack_region.txt
65echo $KEYSTONE > /opt/config/keystone.txt
66echo $SO_REPO > /opt/config/remote_repo.txt
67
68if [ ! -f /opt/rebooted ]; then
69 touch /opt/so_install.sh
70 chmod 777 /opt/so_install.sh
71 curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/so_install.sh -o /opt/so_install.sh
72 cd /opt
73 chmod +x so_install.sh
74
75 echo " if [ ! -f /opt/rebooted ]; then" >/opt/install_tmp
76 echo " touch /opt/rebooted">>/opt/install_tmp
77 echo " reboot" >>/opt/install_tmp
78 echo " fi">>/opt/install_tmp
79 sed -i -e "/\treboot/r install_tmp" -e "//d" so_install.sh
80fi
81/opt/so_install.sh > so_install.log 2>&1