This commit is contained in:
2025-03-05 22:47:50 -05:00
parent 0360927617
commit 26638d9728
7 changed files with 32 additions and 15 deletions

View File

@ -1,9 +1,13 @@
---
- name: Debug job_template_name
ansible.builtin.debug:
msg: "We'd pick Non-Prod/Prod NFS servers from here based on the selected job template name: {{ job_template_name }}."
- name: Check connectivity to NFS servers
ansible.builtin.wait_for:
host: "{{ item }}"
port: 2049
timeout: 30
timeout: 5 # default: 30
loop: "{{ rear_vars_nfs_np }}"
ignore_errors: true
register: active_nfs_servers