@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
15 lines (13 loc) • 335 B
YAML
- name: Ensure GlusterFS Service is started
service:
name: glusterd
state: started
enabled: true
- name: Ensure directories are created for use by GlusterFS Volumes
file:
path: "{{ item.mountpoint }}"
state: directory
mode: 0755
loop: "{{ glusterfs_volumes }}"
when: glusterfs_volumes | length > 0