Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion artifacts/lrms/slurm_fe_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
when: ansible_os_family == "Debian"
- name: Set slurm_wn_nodenames if not defined
set_fact:
slurm_wn_nodenames: '{{ groups[wn_group_name]|map("extract", hostvars, "ansible_hostname")|list if wn_group_name in groups else [] }}'

Check warning on line 26 in artifacts/lrms/slurm_fe_install.yml

View workflow job for this annotation

GitHub Actions / test-artifacts

jinja[spacing]

Jinja2 spacing could be improved: {{ groups[wn_group_name]|map("extract", hostvars, "ansible_hostname")|list if wn_group_name in groups else [] }} -> {{ groups[wn_group_name] | map("extract", hostvars, "ansible_hostname") | list if wn_group_name in groups else [] }}
when: slurm_wn_nodenames is not defined
when: slurm_wn_nodenames is not defined or slurm_wn_nodenames is none
roles:
- role: grycap.nfs
nfs_mode: 'front'
Expand Down
Loading