以下のコードは構文的に正しくないため拒否されます:
{%
if inventory_hostname in groups.aptcache
set cachehost = 'localhost'
else
set cachehost = groups['aptcache'] | first
endif
%}
cache={{ cachehost }}
私の願いは、Jinja2の第一人者が私を訂正できるように私の意図が十分に明確であることです。
If式でない限り、if-then-elseを1つのブロックに入れることはできません。どちらか:
{% if inventory_hostname in groups.aptcache %}
{% set cachehost = 'localhost' %}
{% else %}
{% set cachehost = groups['aptcache'] | first %}
{% endif %}
cache={{ cachehost }}
または
cache={{ 'localhost' if inventory_hostname in groups.aptcache else groups['aptcache'] | first }}