Add PAPI dependencies
[csit.git] / resources / tools / testbed-setup / ansible / roles / sut / tasks / ubuntu_bionic.yaml
diff --git a/resources/tools/testbed-setup/ansible/roles/sut/tasks/ubuntu_bionic.yaml b/resources/tools/testbed-setup/ansible/roles/sut/tasks/ubuntu_bionic.yaml
new file mode 100644 (file)
index 0000000..7ed9dae
--- /dev/null
@@ -0,0 +1,26 @@
+---
+# file: roles/sut/tasks/ubuntu_bionic.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'
+    - 'python-cffi-backend'
+    - 'python3-cffi'
+    - 'python3-cffi-backend'
+  tags: install-csit-dependencies