ansible: mount oldstorage (#34)
Co-authored-by: James Hackett <jamesthackett1@gmail.com>
This commit is contained in:
parent
b22483197f
commit
c00b1e9243
1 changed files with 10 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
|||
- nfs-common
|
||||
when: ansible_os_family == "Debian"
|
||||
|
||||
- name: create mount point
|
||||
- name: create /storage mount point
|
||||
become: true
|
||||
ansible.builtin.file:
|
||||
path: /storage
|
||||
|
@ -14,6 +14,14 @@
|
|||
mode: "0755"
|
||||
when: ansible_os_family == "Debian"
|
||||
|
||||
- name: create /oldstorage mount directory
|
||||
become: true
|
||||
ansible.builtin.file:
|
||||
path: /oldstorage
|
||||
state: directory
|
||||
mode: "0755"
|
||||
when: ansible_os_family == "Debian"
|
||||
|
||||
- name: add nfs entry to fstab
|
||||
become: true
|
||||
ansible.builtin.lineinfile:
|
||||
|
@ -23,6 +31,7 @@
|
|||
create: yes
|
||||
with_items:
|
||||
- "10.10.0.7:/storage /storage nfs defaults 0 0"
|
||||
- "192.168.0.150:/zbackup /oldstorage nfs defaults 0 0"
|
||||
|
||||
- name: mount nfs
|
||||
become: true
|
||||
|
|
Loading…
Reference in a new issue