mount oldstorage

This commit is contained in:
wizzdom 2024-03-28 19:42:07 +00:00
parent b22483197f
commit cbfb9b8567

View file

@ -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 point
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