diff options
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 |