f01420cbdf18b7cd3e9939e2ae01b67d5beabd41
[oom.git] / TOSCA / VM / policy / scripts / policy.sh
1 #!/bin/sh
2
3 # ============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
20 #
21 PUBIP="$1"
22 PVTIP="$2"
23 NEXUS_REPO="$3"
24 DOCKER_REPO="$4"
25 NEXUS_USERNAME="$5"
26 NEXUS_PASSWORD="$6"
27 ARTIFACTS_VERSION="$7"
28 DNS_IP="$8"
29 DOCKER_VERSION="$9"
30 GERRIT_BRANCH="$10"
31 CLOUD_ENV="$11"
32 EXETERNAL_DNS="$12"
33 POLICY_REPO="$13"
34
35 export HOSTNAME=`hostname`
36 echo 127.0.1.1 $HOSTNAME >>/etc/hosts
37 echo $PVTIP $HOSTNAME >>/etc/hosts
38 echo $PUBIP $HOSTNAME >>/etc/hosts
39
40
41 mkdir /opt/config
42 chmod 777 /opt/config
43 echo $PUBIP                                     > /opt/config/public_ip.txt
44 echo $NEXUS_REPO                                > /opt/config/nexus_repo.txt
45 echo $DOCKER_REPO                               > /opt/config/nexus_docker_repo.txt
46 echo $NEXUS_USERNAME                            > /opt/config/nexus_username.txt
47 echo $NEXUS_PASSWORD                            > /opt/config/nexus_password.txt
48 echo $ARTIFACTS_VERSION                         > /opt/config/artifacts_version.txt
49 echo $DNS_IP                                    > /opt/config/dns_ip_addr.txt
50 echo $DOCKER_VERSION                            > /opt/config/docker_version.txt
51 echo $GERRIT_BRANCH                             > /opt/config/gerrit_branch.txt
52 echo $CLOUD_ENV                                 > /opt/config/cloud_env.txt
53 echo $EXETERNAL_DNS                             > /opt/config/external_dns.txt
54 echo $POLICY_REPO                               > /opt/config/remote_repo.txt
55 touch /opt/policy_install.sh
56 chmod 777 /opt/policy_install.sh
57 curl -k $NEXUS_REPO/org.onap.demo/boot/$ARTIFACTS_VERSION/policy_install.sh -o /opt/policy_install.sh;
58 apt-get update
59 apt-get install -y docker.io
60 cd /opt
61 chmod +x policy_install.sh
62 /opt/policy_install.sh > policy_install.log 2>&1