From 74eb7bc5c429961a43250306ce765ea7fe582ebb Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Wed, 12 Oct 2016 10:42:57 -0500 Subject: [PATCH] Fix broken tests by installing unzip dependency. --- tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 3cbe341..2833325 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -4,6 +4,10 @@ include_vars: "{{ ansible_os_family }}.yml" tags: [configuration, selenium] +- name: Install dependencies + package: name=unzip + tags: [configuration, selenium] + - name: create directory file: "path={{ selenium_install_dir }}/selenium state=directory recurse=yes" tags: [configuration, selenium, selenium-create-directory]