Saltstack Official UFW Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

update.sls 303B

1234567891011121314
  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. {%- if ufw.get('enabled', False) %}
  7. app-update-ufw:
  8. cmd.wait: # noqa: 213
  9. - name: ufw app update all
  10. {%- endif %}