Feat(Choux): nfs sharing documents

This commit is contained in:
2019-04-18 16:20:08 +02:00
parent 8b9afaeae6
commit a88753fcaf
3 changed files with 36 additions and 0 deletions

30
tasks/nfs_share.yml Normal file
View File

@@ -0,0 +1,30 @@
---
- name: install nfs
apt:
pkg: nfs-kernel-server
state: present
notify: restart nfs
- name: Lines in exports
lineinfile:
dest: /etc/exports
line: "{{ item.name }} 192.168.1.1/24({{ item.options }})"
with_items: "{{ nfs_shares }}"
notify: restart nfs
- name: create mount points
file:
path: "{{ item.name }}"
state: directory
with_items: "{{ nfs_shares }}"
- name: rbind Mounts for NFS etc.
mount:
name: '{{ item.name }}'
src: '{{ item.src }}'
fstype: none
opts: rbind
passno: 0
state: mounted
with_items: "{{ nfs_shares }}"
notify: restart nfs