summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2019-10-04 10:54:04 -0700
committerToshio Kuratomi <a.badger@gmail.com>2019-10-08 08:10:53 -0700
commitd69852c8902a7ae536fd43d1662d5a14880415e9 (patch)
treec7fd3b82d79ae27d6f30f0809b346f11675f3482
parentf004deaf9141add17af211ed1cedccd1e7d598b5 (diff)
downloadansible-d69852c8902a7ae536fd43d1662d5a14880415e9.tar.gz
[stable-2.9] Install zip for unarchive test when using dnf.
(cherry picked from commit 86ae3cfa12babee2762d180c75f4af8b810c664a) Co-authored-by: Matt Clay <matt@mystile.com>
-rw-r--r--test/integration/targets/unarchive/tasks/main.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/unarchive/tasks/main.yml b/test/integration/targets/unarchive/tasks/main.yml
index 282c89fb21..9794e6a800 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