nomad/ansible/roles/configure-nfs-client/tasks/main.yml
wizzdom c00b1e9243
ansible: mount oldstorage (#34)
Co-authored-by: James Hackett <jamesthackett1@gmail.com>
2024-03-28 20:01:04 +00:00

40 lines
888 B
YAML

---
- name: install nfs client
become: true
ansible.builtin.apt:
name:
- nfs-common
when: ansible_os_family == "Debian"
- name: create /storage mount point
become: true
ansible.builtin.file:
path: /storage
state: directory
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:
path: /etc/fstab
line: "{{ item }}"
state: present
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
ansible.builtin.shell:
cmd: "mount -a"
when: ansible_os_family == "Debian"