aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/sut/tasks/ubuntu_bionic.yaml
blob: b562ec115870b89897639041267fd79e8c61f930 (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
---
# file: roles/sut/tasks/ubuntu_bionic.yaml

- name: Install CSIT dependencies
  apt:
    name:
      - 'dkms'
      - 'pkg-config'
      - 'libglib2.0-dev'
      - 'autoconf'
      - 'libtool'
      - 'screen'
      - 'libmbedcrypto1'
      - 'libmbedtls10'
      - 'libmbedx509-0'
      - 'lxc'
      - 'openjdk-8-jdk'
      - 'libpixman-1-dev'
      - 'python-cffi'
      - 'python-cffi-backend'
      - 'python3-cffi'
      - 'python3-cffi-backend'
      - 'libnuma-dev'
      - 'lzop'
      - 'lrzip'
    state: 'present'
    install_recommends: False
  tags: install-csit-dependencies

- name: Kernel VM install
  include_tasks: '../../common/tasks/kernel_install.yaml'
  tags: install-kernel-image