blob: 7a8999c4cb43fdff0bd9f66789512f24435d0529 (
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
|
---
# file: csit/defaults/main.yml
csit_packages: "{{ csit_packages_base + csit_packages_by_distro[ansible_distribution|lower] }}"
csit_packages_base:
- 'curl'
- 'python3-cffi'
- 'python3-pip'
- 'python3-setuptools'
- 'virtualenv'
- 'wget'
csit_packages_by_distro:
centos:
- 'autoconf'
- 'automake'
- 'binutils'
- 'bison'
- 'flex'
- 'gcc'
- 'gcc-c++'
- 'gdb'
- 'git'
- 'glibc-devel'
- 'libpcap-devel'
- 'libtool'
- 'make'
- 'pkgconf'
- 'pkgconf-m4'
- 'pkgconf-pkg-config'
- 'redhat-rpm-config'
- 'rpm-build'
- 'rpm-sign'
- 'strace'
ubuntu:
- 'build-essential'
- 'libpcap-dev'
|