Guest User

Untitled

a guest
Jul 17th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. {# style 1 - long form #}
  2. {% if filepath == '/var/opt/tomcat_1' %}
  3. {% set tomcat_value = tomcat_1_value %}
  4. {% else %}
  5. {% set tomcat_value = tomcat_2_value %}
  6. {% endif %}
  7.  
  8. {# style 2 - short form #}
  9. {% set tomcat_value = tomcat_1_value if (filepath == '/var/opt/tomcat_1') else tomcat_2_value %}
  10.  
  11. {# style 3 - with ternary filter #}
  12. {% set tomcat_value = (filepath == '/var/opt/tomcat_1')|ternary(tomcat_1_value, tomcat_2_value) %}
  13.  
  14. <Server port={{ tomcat_value }} shutdown="SHUTDOWN">
Add Comment
Please, Sign In to add comment