aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/sut/tasks/ubuntu.yaml
blob: 69ca52916e960878cb12be34b7494efef34227c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
# file: roles/sut/tasks/ubuntu.yaml

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