Adapt autogen for SFd tests
[csit.git] / resources / tools / testbed-setup / ansible / roles / sut / tasks / ubuntu.yaml
1 ---
2 # file: roles/sut/tasks/ubuntu.yaml
3
4 - name: Install DKMS
5   apt:
6     name: 'dkms'
7     state: 'present'
8     update_cache: True
9   become: yes
10   tags: install-dkms
11
12 - name: Install pkg-config
13   apt:
14     name: 'pkg-config'
15     state: 'present'
16     update_cache: True
17   become: yes
18   tags: install-pkg-config
19
20 - name: Install libglib2.0-dev
21   apt:
22     name: 'libglib2.0-dev'
23     state: 'present'
24     update_cache: True
25   become: yes
26   tags: install-libglib2.0-dev
27
28 - name: Install autoconf
29   apt:
30     name: 'autoconf'
31     state: 'present'
32     update_cache: True
33   become: yes
34   tags: install-autoconf
35
36 - name: Install libtool
37   apt:
38     name: 'libtool'
39     state: 'present'
40     update_cache: True
41   become: yes
42   tags: install-libtool
43
44 - name: Install screen
45   apt:
46     name: 'screen'
47     state: 'present'
48     update_cache: True
49   become: yes
50   tags: install-screen
51
52 - name: Install libmbedcrypto1
53   apt:
54     name: 'libmbedcrypto1'
55     state: 'present'
56     update_cache: True
57   become: yes
58   tags: install-libmbedcrypto1
59
60 - name: Install libmbedtls10
61   apt:
62     name: 'libmbedtls10'
63     state: 'present'
64     update_cache: True
65   become: yes
66   tags: install-libmbedtls10
67
68 - name: Install libmbedx509-0
69   apt:
70     name: 'libmbedx509-0'
71     state: 'present'
72     update_cache: True
73   become: yes
74   tags: install-libmbedx509-0
75
76 - name: Install lxc
77   apt:
78     name: 'lxc'
79     state: 'present'
80     update_cache: True
81   become: yes
82   tags: install-lxc
83
84 - name: Install java
85   apt:
86     name: 'openjdk-8-jdk'
87     state: 'present'
88     update_cache: True
89   become: yes
90   tags: install-java
91
92 - name: Install Pixman (Qemu-dep)
93   apt:
94     name: 'libpixman-1-dev'
95     state: 'present'
96     update_cache: True
97   become: yes
98   tags: install-pixman
99
100 - name: Install python-cffi
101   apt:
102     name: 'python-cffi'
103     state: 'present'
104     update_cache: True
105   become: yes
106   tags: install-python-cffi