]> git.immae.eu Git - github/fretlink/ansible-rabbitmq.git/commitdiff
Added Fedora pre-reqs
authorLarry Smith Jr <mrlesmithjr@gmail.coml>
Fri, 4 Mar 2016 14:41:24 +0000 (09:41 -0500)
committerLarry Smith Jr <mrlesmithjr@gmail.coml>
Fri, 4 Mar 2016 14:41:24 +0000 (09:41 -0500)
Signed-off-by: Larry Smith Jr <mrlesmithjr@gmail.coml>
tasks/redhat.yml

index bf6f1e11706cbf13d9aea209cfe9373166ce6f55..1624d8f148b604fb0e60bb0b4fedb9ffe6389cbf 100644 (file)
@@ -1,5 +1,5 @@
 ---
-- name: redhat | installing pre-reqs
+- name: redhat | installing pre-reqs (yum)
   yum:
     name: "{{ item }}"
     state: present
   when: >
         ansible_distribution != "Fedora"
 
+- name: redhat | installing pre-reqs (dnf)
+  dnf:
+    name: "{{ item }}"
+    state: present
+  with_items:
+    - wget
+
 - name: redhat | installing erlang
   dnf:
     name: "erlang"