Skip to content

Instantly share code, notes, and snippets.

@hnakamur
Created May 15, 2022 06:28
Show Gist options
  • Save hnakamur/5f2c8f9c6dd3b218374e7f0697516e4f to your computer and use it in GitHub Desktop.
Save hnakamur/5f2c8f9c6dd3b218374e7f0697516e4f to your computer and use it in GitHub Desktop.
trim spaces in ansible vairable using jinja2 if
---
- name: My playbook
hosts: localhost
vars:
zabbix_agentd_d_dir: >-
{% if ansible_facts['os_family'] == 'RedHat' -%}
/etc/zabbix/zabbix_agentd.d
{%- else -%}
/etc/zabbix/zabbix_agentd.conf.d
{%- endif %}
tasks:
- name: Print zabbix_agentd_d_dir
debug: var=zabbix_agentd_d_dir
@hnakamur
Copy link
Author

$ ansible-playbook mytask.yaml

...(snip)...

TASK [Print zabbix_agentd_d_dir] *********************************************************************
ok: [localhost] => {
    "zabbix_agentd_d_dir": "/etc/zabbix/zabbix_agentd.conf.d"
}

...(snip)...

$ head -1 /etc/os-release
PRETTY_NAME="Ubuntu 22.04 LTS"

See https://jinja.palletsprojects.com/en/3.1.x/templates/#whitespace-control for - in {%- and -%}.

@hnakamur
Copy link
Author

another solution using Jinja2 if expression

---
- name: My playbook
  hosts: localhost
  vars:
    zabbix_agentd_d_dir: "{{ '/etc/zabbix/zabbix_agentd.d' if ansible_facts['os_family'] == 'RedHat'
      else '/etc/zabbix/zabbix_agentd.conf.d' }}"
  tasks:
    - name: Print zabbix_agentd_d_dir
      debug: var=zabbix_agentd_d_dir

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment