diff options
author | Larry Smith Jr <mrlesmithjr@gmail.coml> | 2016-03-04 09:41:24 -0500 |
---|---|---|
committer | Larry Smith Jr <mrlesmithjr@gmail.coml> | 2016-03-04 09:41:24 -0500 |
commit | ce474be41d93f6907cff91993fe8792eb8575d43 (patch) | |
tree | 69b33af4a32d226ca684e2a0de11a3f8deeed349 /tasks | |
parent | 5b3a53a698e61e81b322c3d8f96d2ba9ba520ea6 (diff) | |
download | ansible-rabbitmq-ce474be41d93f6907cff91993fe8792eb8575d43.tar.gz ansible-rabbitmq-ce474be41d93f6907cff91993fe8792eb8575d43.tar.zst ansible-rabbitmq-ce474be41d93f6907cff91993fe8792eb8575d43.zip |
Added Fedora pre-reqs
Signed-off-by: Larry Smith Jr <mrlesmithjr@gmail.coml>
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/redhat.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tasks/redhat.yml b/tasks/redhat.yml index bf6f1e1..1624d8f 100644 --- a/tasks/redhat.yml +++ b/tasks/redhat.yml | |||
@@ -1,5 +1,5 @@ | |||
1 | --- | 1 | --- |
2 | - name: redhat | installing pre-reqs | 2 | - name: redhat | installing pre-reqs (yum) |
3 | yum: | 3 | yum: |
4 | name: "{{ item }}" | 4 | name: "{{ item }}" |
5 | state: present | 5 | state: present |
@@ -10,6 +10,13 @@ | |||
10 | when: > | 10 | when: > |
11 | ansible_distribution != "Fedora" | 11 | ansible_distribution != "Fedora" |
12 | 12 | ||
13 | - name: redhat | installing pre-reqs (dnf) | ||
14 | dnf: | ||
15 | name: "{{ item }}" | ||
16 | state: present | ||
17 | with_items: | ||
18 | - wget | ||
19 | |||
13 | - name: redhat | installing erlang | 20 | - name: redhat | installing erlang |
14 | dnf: | 21 | dnf: |
15 | name: "erlang" | 22 | name: "erlang" |