Add chromium packages
imporove the tests to check that framework is running
Change-Id: I634dd03b43cdda9ad746c25b523e181aad9e3f1f
diff --git a/tasks/Debian.yml b/tasks/Debian.yml
index 4d214df..6483831 100644
--- a/tasks/Debian.yml
+++ b/tasks/Debian.yml
@@ -15,6 +15,24 @@
update_cache: true
cache_valid_time: 3600
+- name: Add Chromium browser (Debian)
+ when: 'ansible_distribution == "Debian"'
+ apt:
+ name:
+ - "chromium"
+ state: "present"
+ update_cache: true
+ cache_valid_time: 3600
+
+- name: Add Chromium browser (Ubuntu)
+ when: 'ansible_distribution == "Ubuntu"'
+ apt:
+ name:
+ - "chromium-browser"
+ state: "present"
+ update_cache: true
+ cache_valid_time: 3600
+
- name: Create environment config for timesheetsdb service
template:
src: "default.timesheetsdb.j2"