Bugfix in role enable_hugepages_on_boot
[yardstick.git] / nsb_setup.sh
1 #!/usr/bin/env bash
2 # Copyright (c) 2017 Intel Corporation.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 # OPENRC handling has to be first due no_proxy
17 if [ $# -eq 1 ]; then
18     OPENRC=$(readlink -f -- "$1")
19     extra_args="${extra_args} -e openrc_file=${OPENRC}"
20     source "${OPENRC}"
21     CONTROLLER_IP=$(echo ${OS_AUTH_URL} | sed -ne "s#http://\([0-9a-zA-Z.\-]*\):*[0-9]*/.*#\1#p")
22 fi
23
24 env_http_proxy=$(sed -ne "s/^http_proxy=[\"\']\(.*\)[\"\']/\1/p" /etc/environment)
25 if [[ -z ${http_proxy} ]] && [[ ! -z ${env_http_proxy} ]]; then
26     export http_proxy=${env_http_proxy}
27 fi
28 env_https_proxy=$(sed -ne "s/^https_proxy=[\"\']\(.*\)[\"\']/\1/p" /etc/environment)
29 if [[ -z ${https_proxy} ]] && [[ ! -z ${env_https_proxy} ]]; then
30     export https_proxy=${env_https_proxy}
31 fi
32
33 # if http[s]_proxy is set (from env or /etc/environment) prepare proxy for ansible
34 if [[ ! -z ${http_proxy} ]] || [[ ! -z ${https_proxy} ]]; then
35     export no_proxy="localhost,127.0.0.1,${CONTROLLER_IP},${no_proxy}"
36     extra_args="${extra_args} -e @/tmp/proxy.yml "
37
38     cat <<EOF > /tmp/proxy.yml
39 ---
40 proxy_env:
41   http_proxy: ${http_proxy}
42   https_proxy: ${https_proxy}
43   no_proxy: ${no_proxy}
44 EOF
45 fi
46
47 apt-get update > /dev/null 2>&1
48 pkg=(python-pip build-essential libssl-dev libffi-dev python3-dev python-dev)
49 for i in "${pkg[@]}"; do
50     dpkg-query -W --showformat='${Status}\n' "${i}"|grep "install ok installed"
51     if [  "$?" -eq "1" ]; then
52         apt-get -y install "${i}";
53     fi
54 done
55
56 pip install ansible==2.3.2 shade==1.17.0 docker-py==1.10.6
57
58 ANSIBLE_SCRIPTS="ansible"
59
60 cd ${ANSIBLE_SCRIPTS} &&\
61 ansible-playbook \
62          -e img_modify_playbook='ubuntu_server_cloudimg_modify_samplevnfs.yml' \
63          -e YARD_IMG_ARCH='amd64' ${extra_args}\
64          -i yardstick-install-inventory.ini nsb_setup.yml