From 00cfd6ecbd8a2a5104b114e6020931fb00735017 Mon Sep 17 00:00:00 2001 From: khaledk2 Date: Sun, 1 Dec 2024 17:08:43 +0000 Subject: [PATCH] debug 8.4 --- ansible/idr-omero-readonly.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/ansible/idr-omero-readonly.yml b/ansible/idr-omero-readonly.yml index cc5c62c5..417afa01 100644 --- a/ansible/idr-omero-readonly.yml +++ b/ansible/idr-omero-readonly.yml @@ -25,19 +25,22 @@ - name: Display nfs-server status command: systemctl enable --now nfs-server register: command_output - - name: Display nfs-server status - command: firewall-cmd --permanent --add-service=nfs - register: command_output - + command: ls -ld /data/OMERO + register: command_output1 - name: Display nfs-server status - command: firewall-cmd --reload - register: command_output - + command: ls -ld /data/BioFormatsCache + register: command_output2 + - name: Display nfs-server status + command: ls -ld /data/idr-metadata + register: command_output3 - name: Print to console debug: - msg: "{{command_output.stdout}}" + msg: + - "{{command_output1.stdout}}" + - "{{command_output2.stdout}}" + - "{{command_output3.stdout}}" roles: