From a23dde11e21d30000ab1079314b51319804387fa Mon Sep 17 00:00:00 2001 From: Jens Steidl <Jens.Steidl@slub-dresden.de> Date: Tue, 14 Nov 2023 15:49:52 +0100 Subject: [PATCH] chore: obsolete --- tasks/configure_nfs_mounts.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/tasks/configure_nfs_mounts.yml b/tasks/configure_nfs_mounts.yml index 213d3ef..9f6034f 100644 --- a/tasks/configure_nfs_mounts.yml +++ b/tasks/configure_nfs_mounts.yml @@ -41,36 +41,6 @@ label: "{{ item.0 }}" when: ansible_hostname in item.0.hosts -# - name: create mount points and mount shares for Rosetta DEV -# ansible.posix.mount: -# fstype: "{{ item.value.fstype | default('nfs') }}" -# opts: "{{ item.value.mount_opts | default('auto,nfsvers=4') }}" -# src: "{{ item.value.src }}" -# path: "{{ item.value.path }}" -# state: "{{ item.value.state | default('mounted') }}" -# loop: "{{ volumes.dev | dict2items }}" -# when: ansible_hostname == "sdvlzarosappdev" -# -# - name: create mount points and mount shares for Rosetta TEST -# ansible.posix.mount: -# fstype: "{{ item.value.fstype | default('nfs') }}" -# opts: "{{ item.value.mount_opts | default('auto,nfsvers=4') }}" -# src: "{{ item.value.src }}" -# path: "{{ item.value.path }}" -# state: "{{ item.value.state | default('mounted') }}" -# loop: "{{ volumes.test | dict2items }}" -# when: ansible_hostname == "sdvrosetta-test" -# -# - name: create mount points and mount shares for Rosetta PROD -# ansible.posix.mount: -# fstype: "{{ item.value.fstype | default('nfs') }}" -# opts: "{{ item.value.mount_opts | default('auto,nfsvers=4') }}" -# src: "{{ item.value.src }}" -# path: "{{ item.value.path }}" -# state: "{{ item.value.state | default('mounted') }}" -# loop:: "{{ volumes.prod | dict2items }}" -# when: ansible_hostname in "sdvlzarosappprod0" -# - name: find /mnt/sdvlzasubapp*_access directories ansible.builtin.find: paths: "/mnt/" -- GitLab