Reorganise
This commit is contained in:
parent
4be4c0a719
commit
2722973e49
19 changed files with 161 additions and 255 deletions
23
roles/nfs-server/tasks/main.yml
Normal file
23
roles/nfs-server/tasks/main.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
- name: Mount /export/tv
|
||||
become: true
|
||||
ansible.posix.mount:
|
||||
src: UUID=fcee0188-8ca1-4fda-81b7-f5920c79ab48
|
||||
path: /export/tv
|
||||
state: mounted
|
||||
fstype: ext4
|
||||
|
||||
- name: Mount /export/film
|
||||
become: true
|
||||
ansible.posix.mount:
|
||||
src: UUID=5d9dd538-79e4-4168-be91-e0b040155cb3
|
||||
path: /export/film
|
||||
state: mounted
|
||||
fstype: ext4
|
||||
|
||||
- name: Mount /export/misc
|
||||
become: true
|
||||
ansible.posix.mount:
|
||||
src: UUID=5a43b7dc-3e28-459e-824a-ad45b5475361
|
||||
path: /export/misc
|
||||
state: mounted
|
||||
fstype: ext4
|
Loading…
Add table
Add a link
Reference in a new issue