aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/testbed-setup/ansible/roles/sut/tasks/ubuntu_x86_64.yaml
blob: dd0176b72b4d8390fadfcf2e4e35ea9f7c4277ee (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
---
# file: roles/sut/tasks/ubuntu_x86_64.yaml

- name: Install DKMS
  apt:
    name: 'dkms'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-dkms

- name: Install pkg-config
  apt:
    name: 'pkg-config'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-pkg-config

- name: Install libglib2.0-dev
  apt:
    name: 'libglib2.0-dev'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-libglib2.0-dev

- name: Install autoconf
  apt:
    name: 'autoconf'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-autoconf

- name: Install libtool
  apt:
    name: 'libtool'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-libtool

- name: Install screen
  apt:
    name: 'screen'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-screen

- name: Install libmbedcrypto1
  apt:
    name: 'libmbedcrypto1'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-libmbedcrypto1

- name: Install libmbedtls10
  apt:
    name: 'libmbedtls10'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-libmbedtls10

- name: Install libmbedx509-0
  apt:
    name: 'libmbedx509-0'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-libmbedx509-0

- name: Install lxc
  apt:
    name: 'lxc'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-lxc

- name: Install java
  apt:
    name: 'openjdk-8-jdk'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-java

- name: Install Pixman (Qemu-dep)
  apt:
    name: 'libpixman-1-dev'
    state: 'present'
    update_cache: True
  become: yes
  tags: install-pixman