Copy over some initial stuff

This commit is contained in:
Jef Roosens 2022-11-12 12:21:39 +01:00
commit 18ae3aaf4e
Signed by: Jef Roosens
GPG key ID: B75D4F293C7052DB
11 changed files with 210 additions and 0 deletions

View file

@ -0,0 +1,13 @@
---
- name: Install NFS client.
apt:
name: nfs-common
state: present
- name: Mount NFS share.
ansible.posix.mount:
src: {{ hostvars['admin']['ansible_host'] }}:/mnt/data
path: /mnt/data
fstype: nfs4
opts: defaults,user,exec
state: mounted