Saltstack Official UFW Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
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 %}