add debian compatibility

pull/2931/head
Sascha Marcel Schmidt 2018-06-25 13:37:58 +02:00
parent 61046a6923
commit 8c5bfc7718
No known key found for this signature in database
GPG Key ID: D1D6CE184437796D
1 changed files with 9 additions and 1 deletions

View File

@ -9,8 +9,16 @@
name: "{{ item }}" name: "{{ item }}"
state: "present" state: "present"
- name: "Install glusterfs mount utils" - name: "Install glusterfs mount utils (RedHat)"
become: true become: true
yum: yum:
name: "glusterfs-fuse" name: "glusterfs-fuse"
state: "present" state: "present"
when: "ansible_os_family == 'RedHat'"
- name: "Install glusterfs mount utils (Debian)"
become: true
apt:
name: "glusterfs-client"
state: "present"
when: "ansible_os_family == 'Debian'"