fix(ip6scale): Unify rnd profiles
[csit.git] / fdio.infra.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   - "ca-certificates"
9   - "cgroup-tools"
10   - "dkms"
11   - "iperf3"
12   - "linux-tools-common"
13   - "ninja-build"
14   - "numactl"
15   - "qemu-system"
16   - "socat"
17   - "unzip"
18   - "virtualenv"
19
20 packages_by_distro:
21   ubuntu:
22     jammy:
23       - "build-essential"
24       - "libpcap-dev"
25       - "net-tools"
26       - "python3-all"
27       - "python3-apt"
28       - "python3-cffi"
29       - "python3-cffi-backend"
30       - "python3-dev"
31       - "python3-pip"
32       - "python3-pyelftools"
33       - "python3-setuptools"
34
35 packages_by_arch:
36   aarch64:
37     - "gfortran"
38     - "libblas-dev"
39     - "libffi-dev"
40     - "liblapack-dev"
41     - "libssl-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 }}