From 42072cb726c9062a4df7245c4cc78e9045cfd6d7 Mon Sep 17 00:00:00 2001
From: Eesaan Atluri <atlurie@uab.edu>
Date: Thu, 29 Sep 2022 21:18:38 +0000
Subject: [PATCH] Create mountpoints before mounting them

---
 ansible/roles/cheaha.node/tasks/main.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ansible/roles/cheaha.node/tasks/main.yml b/ansible/roles/cheaha.node/tasks/main.yml
index 1724f3c..37ecd87 100644
--- a/ansible/roles/cheaha.node/tasks/main.yml
+++ b/ansible/roles/cheaha.node/tasks/main.yml
@@ -79,6 +79,8 @@
     - { dir: /scratch, mode: '0755' }
     - { dir: /share, mode: '0755' }
     - { dir: /data/rc/apps, mode: '0755' } # this is only required for the symlink to be happy
+    - { dir: /data/user, mode: '0755' }
+    - { dir: /data/project, mode: '0755' }
 - name: Set up NFS GPFS mount point(s)
   ansible.posix.mount:
     path: "{{ item.path }}"
-- 
GitLab