Skip to content
Snippets Groups Projects
Commit 15c29c28 authored by Chris Hines's avatar Chris Hines
Browse files

fix up gluster on Ubuntu

parent 65313c7b
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@
sudo: true
- name: install gluster
apt: name=glusterfs state='latest'
apt: name=glusterfs-client state='latest'
when: ansible_os_family == 'Debian'
sudo: true
......
......@@ -15,13 +15,19 @@
sudo: true
- name: install gluster
apt: name=glusterfs state='latest'
apt: name=glusterfs-server state='latest'
when: ansible_os_family == 'Debian'
sudo: true
- name: start daemon
service: name=glusterd enabled=yes state=started
sudo: true
when: ansible_os_family == 'RedHat'
- name: start daemon
service: name=glusterfs-server enabled=yes state=started
sudo: true
when: ansible_os_family == 'Debian'
- name: make server list
set_fact:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment