vpp_device: updates for 1n-tx2 testbeds
[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     - "libffi-dev"
42     - "liblapack-dev"
43     - "libssl-dev"
44   x86_64:
45     - []
46
47 # Proxy settings: Uncomment and fill the proper values. These variables will be
48 # set globally by writing into /etc/environment file on target machine.
49 #proxy_env:
50 #  http_proxy: http://proxy.com:80
51 #  HTTP_PROXY: http://proxy.com:80
52 #  https_proxy: http://proxy.com:80
53 #  HTTPS_PROXY: http://proxy.com:80
54 #  ftp_proxy: http://proxy.com:80
55 #  FTP_PROXY: http://proxy.com:80
56 #  no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
57 #  NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
58