f54bfce228a5a7218062cb8d0fa482eb53d221b0
[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] + 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     - "build-essential"
21     - "libpcap-dev"
22     - "python-all"
23     - "python-apt"
24     - "python-cffi"
25     - "python-cffi-backend"
26     - "python-dev"
27     - "python-pip"
28     - "python-setuptools"
29     - "python3-all"
30     - "python3-apt"
31     - "python3-cffi"
32     - "python3-cffi-backend"
33     - "python3-dev"
34     - "python3-pip"
35     - "python3-setuptools"
36
37 packages_by_arch:
38   aarch64:
39     - "gfortran"
40     - "libblas-dev"
41     - "liblapack-dev"
42   x86_64:
43     - []
44
45 # Proxy settings: Uncomment and fill the proper values. These variables will be
46 # set globally by writing into /etc/environment file on target machine.
47 #proxy_env:
48 #  http_proxy: http://proxy.com:80
49 #  HTTP_PROXY: http://proxy.com:80
50 #  https_proxy: http://proxy.com:80
51 #  HTTPS_PROXY: http://proxy.com:80
52 #  ftp_proxy: http://proxy.com:80
53 #  FTP_PROXY: http://proxy.com:80
54 #  no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
55 #  NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
56