blob: 1c6af67803338d12f0b2b619a02e43092c772725 (
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
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright 2019 © Samsung Electronics Co., Ltd.
# 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 errexit
set -o nounset
set -o pipefail
# install_deps() - Install dependencies required for functional tests
function install_deps {
if ! $(jq --version &>/dev/null); then
function ubuntu_deps {
sudo apt-get install -y jq
}
install_packages "" ubuntu_deps ""
fi
}
# install_ovn_deps() - Install dependencies required for tests that require OVN
function install_ovn_deps {
if ! $(yq --version &>/dev/null); then
install_deps # jq needed as it's dependency of yq
sudo -E pip install yq
fi
if ! $(ovn-nbctl --version &>/dev/null); then
function ovn_ubuntu_deps {
sudo apt-get install -y apt-transport-https
echo "deb https://packages.wand.net.nz $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/wand.list
sudo curl https://packages.wand.net.nz/keyring.gpg -o /etc/apt/trusted.gpg.d/wand.gpg
sudo apt-get update
sudo apt install -y ovn-common
}
install_packages "" ovn_ubuntu_deps ""
fi
}
function install_packages {
local suse_packages=$1
local ubuntu_debian_packages=$2
local rhel_centos_packages=$3
source /etc/os-release || source /usr/lib/os-release
case ${ID,,} in
*suse)
($suse_packages)
;;
ubuntu|debian)
($ubuntu_debian_packages)
;;
rhel|centos|fedora)
($rhel_centos_packages)
;;
esac
}
|