blob: 2c4ece6870e4d3d28fde8bbed3d398ce5b52925f (
plain)
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
|
#!/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
##############################################################################
set -o nounset
set -o pipefail
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"
# 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"
# 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"
# 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
if ! which pip; then
curl -sL https://bootstrap.pypa.io/get-pip.py | sudo python
fi
sudo -H pip install --upgrade pip
sudo -H pip install tox
${INSTALLER_CMD} ${packages[@]}
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
|