From 118697a34ec670e7be2c0836ca0da3d23d705832 Mon Sep 17 00:00:00 2001
From: Chris King <kingtc@uab.edu>
Date: Fri, 22 Apr 2022 15:24:34 +0000
Subject: [PATCH] Update node to mount home dir under /data/

---
 ansible/node.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ansible/node.yml b/ansible/node.yml
index db90f3b..c76b148 100644
--- a/ansible/node.yml
+++ b/ansible/node.yml
@@ -76,8 +76,9 @@
         state: present
       loop:
         - { path: /cm/shared, src: "gpfs.rc.uab.edu:/data/cm/shared-8.2", fstype: nfs, opts: _netdev,defaults }
-        - { path: /data, src: "gpfs.rc.uab.edu:/data", fstype: nfs, opts: _netdev,defaults }
         - { path: /home, src: "gpfs.rc.uab.edu:/data/user/home", fstype: nfs, opts: _netdev,defaults }
+        - { path: /data/project, src: "gpfs.rc.uab.edu:/data/project", fstype: nfs, opts: _netdev,defaults }
+        - { path: /data/user, src: "gpfs.rc.uab.edu:/data/user", fstype: nfs, opts: _netdev,defaults }
     - name: Add ssh key for root access
       ansible.posix.authorized_key:
         user: root
-- 
GitLab