Perform this procedure to create a mount point for a new file system on a UAN.
Perform Steps 1-9 of Create UAN Boot Images.
Create a directory for Application role nodes.
ncn-w001# mkdir -p group_vars/Application
Define the home directory information for the new file system in the filesystems.yml file.
ncn-w001# vi group_vars/Application/filesystems.yml
---
filesystems:
  - src: 10.252.1.1:/home
    mount_point: /home    
    fstype: nfs4    
    opts: rw,noauto
    state: mounted
Add the change from the working directory to the staging area.
ncn-w001# git add -A
Commit the file to the working branch.
ncn-w001# git commit -am 'Added file system info'
Resume Create UAN Boot Images at Step 10.