Saltstack Official UFW Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 satır
320B

  1. {%- for app_name, app_config in config.items() %}
  2. {%- set app_title=app_config.get('title', app_name) %}
  3. {%- set app_description=app_config.get('description', "") %}
  4. {%- set app_ports=app_config.get('ports') %}
  5. [{{ app_name }}]
  6. title={{ app_title }}
  7. description={{ app_description }}
  8. ports={{ app_ports }}
  9. {%- endfor %}