From 38a2e39cbf6820afd59224ac4aa854ecaa3c3bb7 Mon Sep 17 00:00:00 2001
From: Jens Steidl <Jens.Steidl@slub-dresden.de>
Date: Tue, 14 Nov 2023 09:39:34 +0100
Subject: [PATCH] fix: disable new task for later

---
 tasks/configure_nfs_mounts.yml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/tasks/configure_nfs_mounts.yml b/tasks/configure_nfs_mounts.yml
index c8470e4..213d3ef 100644
--- a/tasks/configure_nfs_mounts.yml
+++ b/tasks/configure_nfs_mounts.yml
@@ -109,14 +109,14 @@
     mode: "0770"
   loop: "{{ ingest_dirs.files }}"
 
-- name: set correct permissions/owner/group for permanent shares
-  ansible.builtin.file:
-    path: "{{ item.1.path }}"
-    state: directory
-    owner: "{{ vault_rosetta_user }}"
-    group: "{{ vault_rosetta_group }}"
-    mode: "0755"
-  loop: "{{ volumes | subelements('shares') }}"
-  loop_control:
-    label: "{{ item.0 }}"
-  when: ansible_hostname in item.0.hosts
+#- name: set correct permissions/owner/group for permanent shares
+#  ansible.builtin.file:
+#    path: "{{ item.1.path }}"
+#    state: directory
+#    owner: "{{ vault_rosetta_user }}"
+#    group: "{{ vault_rosetta_group }}"
+#    mode: "0755"
+#  loop: "{{ volumes | subelements('shares') }}"
+#  loop_control:
+#    label: "{{ item.0 }}"
+#  when: ansible_hostname in item.0.hosts
-- 
GitLab