diff options
author | Larry Smith Jr <mrlesmithjr@gmail.com> | 2016-07-02 01:43:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-02 01:43:14 -0400 |
commit | 2922c75a7fce9ba62d1d78a50bca7f14e707cd9d (patch) | |
tree | 92e2b0a4b2df0cc9bc8a809b4e7dd35181d7de8f /tasks/main.yml | |
parent | bc0ca3da9ef79d3e75191500e941e63c5dbb6158 (diff) | |
parent | b6c0cb98568bb67c29bc54b7bc061a2138af6666 (diff) | |
download | ansible-rabbitmq-2922c75a7fce9ba62d1d78a50bca7f14e707cd9d.tar.gz ansible-rabbitmq-2922c75a7fce9ba62d1d78a50bca7f14e707cd9d.tar.zst ansible-rabbitmq-2922c75a7fce9ba62d1d78a50bca7f14e707cd9d.zip |
Merge pull request #2 from black-roland/fix-redhat
Fix installation on CentOS
Diffstat (limited to 'tasks/main.yml')
-rw-r--r-- | tasks/main.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tasks/main.yml b/tasks/main.yml index 1768dd9..26abc8d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml | |||
@@ -3,8 +3,11 @@ | |||
3 | when: ansible_os_family == "Debian" | 3 | when: ansible_os_family == "Debian" |
4 | 4 | ||
5 | - include: redhat.yml | 5 | - include: redhat.yml |
6 | when: ansible_os_family == "RedHat" | 6 | when: ansible_distribution == "CentOS" or ansible_distribution == "Red Hat Enterprise Linux" |
7 | 7 | ||
8 | - include: fedora.yml | ||
9 | when: ansible_distribution == "Fedora" | ||
10 | |||
8 | - name: checking to see if already clustered | 11 | - name: checking to see if already clustered |
9 | stat: path=/etc/rabbitmq/clustered | 12 | stat: path=/etc/rabbitmq/clustered |
10 | register: clustered | 13 | register: clustered |