Modify kernel VM download to custom build
[csit.git] / resources / tools / testbed-setup / ansible / roles / sut / tasks / ubuntu_bionic.yaml
1 ---
2 # file: roles/sut/tasks/ubuntu_bionic.yaml
3
4 - name: Install CSIT dependencies
5   apt:
6     name:
7       - 'dkms'
8       - 'pkg-config'
9       - 'libglib2.0-dev'
10       - 'autoconf'
11       - 'libtool'
12       - 'screen'
13       - 'libmbedcrypto1'
14       - 'libmbedtls10'
15       - 'libmbedx509-0'
16       - 'lxc'
17       - 'openjdk-8-jdk'
18       - 'libpixman-1-dev'
19       - 'python-cffi'
20       - 'python-cffi-backend'
21       - 'python3-cffi'
22       - 'python3-cffi-backend'
23       - 'libnuma-dev'
24       - 'lzop'
25       - 'lrzip'
26     state: 'present'
27     install_recommends: False
28   tags: install-csit-dependencies
29
30 - name: Kernel VM install
31   include_tasks: '../../common/tasks/kernel_install.yaml'
32   tags: install-kernel-image