blob: 824f0926b57c7edfa1756615496f5016292c0d9f (
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
99
100
101
102
103
104
105
106
|
---
# file: roles/sut/tasks/ubuntu.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
- name: Install python-cffi
apt:
name: 'python-cffi'
state: 'present'
update_cache: True
become: yes
tags: install-python-cffi
|