ansible-role-nfs/tasks/main.yml

37 lines
923 B
YAML
Raw Permalink Normal View History

2014-03-05 04:38:18 +01:00
---
# Include variables and define needed variables.
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
2016-02-02 04:49:25 +01:00
- name: Include overrides specific to Fedora.
include_vars: Fedora.yml
when:
- ansible_os_family == 'RedHat'
- ansible_distribution == "Fedora"
# Setup/install tasks.
- include_tasks: setup-RedHat.yml
when: ansible_os_family == 'RedHat'
2014-03-05 04:38:18 +01:00
- include_tasks: setup-Debian.yml
when: ansible_os_family == 'Debian'
2014-11-12 22:02:07 +01:00
2016-02-02 04:50:55 +01:00
- name: Ensure directories to export exist
file: # noqa 208
path: "{{ item }}"
state: directory
with_items: "{{ nfs_exports | map('split') | map('first') | unique }}"
2016-02-02 04:50:55 +01:00
2014-11-12 22:02:07 +01:00
- name: Copy exports file.
template:
src: exports.j2
dest: /etc/exports
owner: root
group: root
mode: 0644
notify: reload nfs
- name: Ensure nfs is running.
service: "name={{ nfs_server_daemon }} state=started enabled=yes"
when: nfs_exports|length