Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

6 rindas
338B

  1. {% if ("host_vars/"+inventory_hostname+'/'+_host_vars_filename+'.yml') | is_file %}
  2. {{ _host_vars_default | combine( lookup('file','host_vars/'+inventory_hostname+'/'+_host_vars_filename+'.yml') | from_yaml ) | combine( _host_vars ) | to_nice_yaml }}
  3. {% else %}
  4. {{ _host_vars_default | combine( _host_vars ) | to_nice_yaml }}
  5. {% endif %}