Feat(Choux): nfs sharing documents
This commit is contained in:
30
tasks/nfs_share.yml
Normal file
30
tasks/nfs_share.yml
Normal 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
|
Reference in New Issue
Block a user