From dce682fc3e7d1ee32cca80d96ca34bbf5713b4f4 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 4 Oct 2019 10:54:04 -0700 Subject: [PATCH] [stable-2.8] Install zip for unarchive test when using dnf. (cherry picked from commit 86ae3cfa12babee2762d180c75f4af8b810c664a) Co-authored-by: Matt Clay --- test/integration/targets/unarchive/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/targets/unarchive/tasks/main.yml b/test/integration/targets/unarchive/tasks/main.yml index a4ac8349775..d537cc948ce 100644 --- a/test/integration/targets/unarchive/tasks/main.yml +++ b/test/integration/targets/unarchive/tasks/main.yml @@ -22,9 +22,9 @@ yum: name=zip,unzip state=latest when: ansible_pkg_mgr == 'yum' - #- name: Ensure zip is present to create test archive (dnf) - # dnf: name=zip state=latest - # when: ansible_pkg_mgr == 'dnf' +- name: Ensure zip is present to create test archive (dnf) + dnf: name=zip state=latest + when: ansible_pkg_mgr == 'dnf' - name: Ensure zip & unzip is present to create test archive (apt) apt: name=zip,unzip state=latest