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

17 行
392B

  1. # -*- coding: utf-8 -*-
  2. # vim: ft=sls
  3. {#- Get the `tplroot` from `tpldir` #}
  4. {%- set tplroot = tpldir.split('/')[0] %}
  5. {%- from tplroot ~ "/map.jinja" import ufw with context %}
  6. ufw-package-install-pkg-installed:
  7. pkg.installed:
  8. - name: {{ ufw.package }}
  9. {%- for pkg in ufw.packages %}
  10. ufw-package-{{ pkg }}-install-pkg-installed:
  11. pkg.installed:
  12. - name: {{ pkg }}
  13. {%- endfor %}