We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 278f55a commit 5c9fa01Copy full SHA for 5c9fa01
templates/mpi.conf.j2
@@ -1,4 +1,6 @@
1
# {{ ansible_managed }}
2
-{% for line in openhpc_mpi_conf %}
3
-{{ line }}
+{% for k, v in openhpc_mpi_default_config | combine(openhpc_mpi_config) | items %}
+{% if v != "omit" %}{# allow removing items using setting key: omit #}
4
+{{ k }}={{ v | join(',') if (v is sequence and v is not string) else v }}
5
+{% endif %}
6
{% endfor %}
0 commit comments