I am really struggling on this for some reason and cannot figure this out. I've tried multiple variations with no luck. Basically, I am injecting multiple LDAP endpoints into my nslcd.conf via Jinja2 templating and Ansible, however I am left with a trailing whitespace no matter what I do. On some nodes it's causing the nslcd service to fail to load, so I'm trying to yank the whitespace but having horrible luck. Any suggestions? Here is the basic code -
uri = {% for host in ldap_hosts %}{{ ldap_protocol }}://{{ host }} {% endfor %}base {{ ldap_base_dn }}binddn {{ ldap_bind_dn }}bindpw {{ ldap_bind_password }}rootpwmoddn {{ ldap_bind_dn }}
Output -
uri = ldaps://ldaps.fake.domain.net ldaps://ldaps.alsofake.domain.netbase DC=something,DC=localbinddn CN=ldap_bind_user,OU=ServiceAccounts,OU=Groups,OU=Accounts,DC=something,DC=localbindpw yoinkrootpwmoddn CN=ldap_bind_user,OU=ServiceAccounts,OU=Groups,OU=Accounts,DC=something,DC=local
I have tried every combination of uri = {% for host in ldap_hosts %}{{ ldap_protocol }}://{{ host }} {% endfor %}
I can think of.
{%- for host in ldap_hosts %} ... {%+ endfor -%}
- completely removes the new line and puts base up on the uri line
{%+ for host in ldap_hosts -%} ... {%+ endfor %}
- looks normal but trailing whitespace still exists
{% for host in ldap_hosts %} ... {%- endfor -%}
- removes newline and puts base on the uri line
{%+ for host in ldap_hosts -%} ... {%+ endfor -%}
- removes newline and puts base on the uri line
Basically any option I try either removes the newline and puts base on the uri line, or makes it look normal but I find a whitespace at the end. Yes, I know there is a space in here - ://{{ host }} {%
but that is to separate the endpoints on the line so it has fallback options when one endpoint isn't responding. This has been working fine for years up until literally this week when a device finally said "what is this whitespace" and failed the service instead.