forked from electrocucaracha/openstack-multinode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·198 lines (173 loc) · 5.9 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
# Uncomment next line to debug
# set -o xtrace
set -o nounset
set -o pipefail
if [ "$EUID" -eq "0" ]; then
echo 'This script must be run as NON root.'
exit 1
fi
vagrant_version=2.1.5
if ! $(vagrant version &>/dev/null); then
enable_vagrant_install=true
else
if [[ "$vagrant_version" != "$(vagrant version | awk 'NR==1{print $3}')" ]]; then
enable_vagrant_install=true
fi
fi
function usage {
cat <<EOF
usage: $0 -p <PROVIDER>
Installation of vagrant and its dependencies in Linux OS
Argument:
-p Vagrant provider
EOF
}
while getopts ":p:" OPTION; do
case $OPTION in
p)
provider=$OPTARG
;;
\?)
usage
exit 1
;;
esac
done
if [[ -z "${provider+x}" ]]; then
usage
exit 1
fi
case $provider in
"virtualbox" | "libvirt" )
export VAGRANT_DEFAULT_PROVIDER=${provider}
;;
* )
usage
exit 1
esac
source /etc/os-release || source /usr/lib/os-release
libvirt_group="libvirt"
packages=()
case ${ID,,} in
*suse)
INSTALLER_CMD="sudo -H -E zypper -q install -y --no-recommends"
packages+=(python-devel)
# Vagrant installation
if [[ "${enable_vagrant_install+x}" ]]; then
vagrant_pgp="pgp_keys.asc"
wget -q https://keybase.io/hashicorp/$vagrant_pgp
wget -q https://releases.hashicorp.com/vagrant/$vagrant_version/vagrant_${vagrant_version}_x86_64.rpm
gpg --quiet --with-fingerprint $vagrant_pgp
sudo rpm --import $vagrant_pgp
sudo rpm --checksig vagrant_${vagrant_version}_x86_64.rpm
sudo rpm --install vagrant_${vagrant_version}_x86_64.rpm
rm vagrant_${vagrant_version}_x86_64.rpm
rm $vagrant_pgp
fi
case $VAGRANT_DEFAULT_PROVIDER in
virtualbox)
wget -q http://download.virtualbox.org/virtualbox/rpm/opensuse/$VERSION/virtualbox.repo -P /etc/zypp/repos.d/
$INSTALLER_CMD --enablerepo=epel dkms
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | rpm --import -
packages+=(VirtualBox-5.1)
;;
libvirt)
# vagrant-libvirt dependencies
packages+=(qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm zlib-devel libxml2-devel libxslt-devel make)
# NFS
packages+=(nfs-kernel-server)
;;
esac
sudo zypper -n ref
;;
ubuntu|debian)
libvirt_group="libvirtd"
INSTALLER_CMD="sudo -H -E apt-get -y -q=3 install"
packages+=(python-dev)
# Vagrant installation
if [[ "${enable_vagrant_install+x}" ]]; then
wget -q https://releases.hashicorp.com/vagrant/$vagrant_version/vagrant_${vagrant_version}_x86_64.deb
sudo dpkg -i vagrant_${vagrant_version}_x86_64.deb
rm vagrant_${vagrant_version}_x86_64.deb
fi
case $VAGRANT_DEFAULT_PROVIDER in
virtualbox)
echo "deb http://download.virtualbox.org/virtualbox/debian trusty contrib" >> /etc/apt/sources.list
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
packages+=(virtualbox-5.1 dkms)
;;
libvirt)
# vagrant-libvirt dependencies
packages+=(qemu libvirt-bin ebtables dnsmasq libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev)
# NFS
packages+=(nfs-kernel-server)
;;
esac
sudo apt-get update
;;
rhel|centos|fedora)
PKG_MANAGER=$(which dnf || which yum)
sudo $PKG_MANAGER updateinfo
INSTALLER_CMD="sudo -H -E ${PKG_MANAGER} -q -y install"
packages+=(python-devel)
# Vagrant installation
if [[ "${enable_vagrant_install+x}" ]]; then
wget -q https://releases.hashicorp.com/vagrant/$vagrant_version/vagrant_${vagrant_version}_x86_64.rpm
$INSTALLER_CMD vagrant_${vagrant_version}_x86_64.rpm
rm vagrant_${vagrant_version}_x86_64.rpm
fi
case $VAGRANT_DEFAULT_PROVIDER in
virtualbox)
wget -q http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo -P /etc/yum.repos.d
$INSTALLER_CMD --enablerepo=epel dkms
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | rpm --import -
packages+=(VirtualBox-5.1)
;;
libvirt)
# vagrant-libvirt dependencies
packages+=(qemu libvirt libvirt-devel ruby-devel gcc qemu-kvm)
# NFS
packages+=(nfs-utils nfs-utils-lib)
;;
esac
;;
esac
${INSTALLER_CMD} ${packages[@]}
if ! which pip; then
curl -sL https://bootstrap.pypa.io/get-pip.py | sudo python
fi
sudo -H -E pip install --upgrade pip
sudo -H -E pip install tox
if [[ ${http_proxy+x} ]]; then
vagrant plugin install vagrant-proxyconf
fi
if [ $VAGRANT_DEFAULT_PROVIDER == libvirt ]; then
vagrant plugin install vagrant-libvirt
sudo usermod -a -G $libvirt_group $USER # This might require to reload user's group assigments
sudo systemctl restart libvirtd
fi
# In case firewalld is configured - open ports for nfs
sudo systemctl status firewalld
if [[ $? == 0 ]]; then
tcp_ports=($(sudo rpcinfo -p |grep -Po 'tcp.*' |grep -Po '\d+'| sort -u))
udp_ports=($(sudo rpcinfo -p |grep -Po 'udp.*' |grep -Po '\d+'| sort -u))
# Open ports
for p in ${tcp_ports[@]}; do
sudo firewall-cmd --permanent --add-port=$p/tcp
done
for p in ${udp_ports[@]}; do
sudo firewall-cmd --permanent --add-port=$p/udp
done
sudo firewall-cmd --reload
sudo systemctl restart firewalld
fi