blob: 081cb0bebd2316ad7e3588bc03afbc10ea0e49a2 [file] [log] [blame]
Jun Huad415062017-11-21 14:53:15 -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
Jun Huad415062017-11-21 14:53:15 -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"
32MR_REPO="$12"
33
34export HOSTNAME=`hostname`
35echo 127.0.1.1 $HOSTNAME >>/etc/hosts
36echo $PVTIP $HOSTNAME >>/etc/hosts
37echo $PUBIP $HOSTNAME >>/etc/hosts
38
39
40mkdir /opt/config
41chmod 777 /opt/config
42echo $PUBIP > /opt/config/public_ip.txt
43echo $NEXUS_REPO > /opt/config/nexus_repo.txt
44echo $DOCKER_REPO > /opt/config/nexus_docker_repo.txt
45echo $NEXUS_USERNAME > /opt/config/nexus_username.txt
46echo $NEXUS_PASSWORD > /opt/config/nexus_password.txt
47echo $ARTIFACTS_VERSION > /opt/config/artifacts_version.txt
48echo $DNS_IP > /opt/config/dns_ip_addr.txt
49echo $GERRIT_BRANCH > /opt/config/gerrit_branch.txt
50echo $CLOUD_ENV > /opt/config/cloud_env.txt
51echo $EXETERNAL_DNS > /opt/config/external_dns.txt
52echo $MR_REPO > /opt/config/remote_repo.txt
53
54touch /opt/mr_install.sh
55chmod 777 /opt/mr_install.sh
56curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/mr_install.sh -o /opt/mr_install.sh;
57cd /opt
58chmod +x mr_install.sh
59/opt/mr_install.sh > mr_install.log 2>&1