Skip to content

Commit

Permalink
debug 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledk2 committed Dec 1, 2024
1 parent 0a75dfa commit 00cfd6e
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions ansible/idr-omero-readonly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 00cfd6e

Please sign in to comment.