- ---
- - name: Access an NFS share
- hosts: servera.lab.example.com
- become: true
- vars:
- shared_dir: /srv/operators
- mount_point: /operators_data
- tasks:
- - name: the package for NFS client is installed
- #FIXME: install the required package for an NFS client
- - name: the NFS share is mounted and in /etc/fstab
- #FIXME: persistently mount {{ shared_dir }} from serverd.lab.example.com
- # into the {{ mount_point }} directory
|