7c2931ebec1274e5a6b6ccdd30756cdc2cf2ed1e
[csit.git] / resources / tools / testbed-setup / ansible / roles / common / defaults / main.yaml
1 ---
2 # file: roles/common/defaults/main.yaml
3
4 packages: "{{ packages_base + packages_by_distro[ansible_distribution|lower][ansible_distribution_release] + packages_by_arch[ansible_machine] }}"
5
6 packages_base:
7   - "autoconf"
8   - "cgroup-tools"
9   - "dkms"
10   - "iperf3"
11   - "linux-tools-common"
12   - "ninja-build"
13   - "qemu-system"
14   - "socat"
15   - "unzip"
16   - "virtualenv"
17
18 packages_by_distro:
19   ubuntu:
20     bionic:
21       - "build-essential"
22       - "libpcap-dev"
23       - "net-tools"
24       - "python-all"
25       - "python-apt"
26       - "python-cffi"
27       - "python-cffi-backend"
28       - "python-dev"
29       - "python-pip"
30       - "python-setuptools"
31       - "python3-all"
32       - "python3-apt"
33       - "python3-cffi"
34       - "python3-cffi-backend"
35       - "python3-dev"
36       - "python3-pip"
37       - "python3-setuptools"
38     focal:
39       - "build-essential"
40       - "libpcap-dev"
41       - "net-tools"
42       - "python3-all"
43       - "python3-apt"
44       - "python3-cffi"
45       - "python3-cffi-backend"
46       - "python3-dev"
47       - "python3-pip"
48       - "python3-setuptools"
49
50 packages_by_arch:
51   aarch64:
52     - "gfortran"
53     - "libblas-dev"
54     - "libffi-dev"
55     - "liblapack-dev"
56     - "libssl-dev"
57   x86_64:
58     - []
59
60 # Proxy settings: Uncomment and fill the proper values. These variables will be
61 # set globally by writing into /etc/environment file on target machine.
62 #proxy_env:
63 #  http_proxy: http://proxy.com:80
64 #  HTTP_PROXY: http://proxy.com:80
65 #  https_proxy: http://proxy.com:80
66 #  HTTPS_PROXY: http://proxy.com:80
67 #  ftp_proxy: http://proxy.com:80
68 #  FTP_PROXY: http://proxy.com:80
69 #  no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
70 #  NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
71