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

19 行
333B

  1. {%- from "linux/map.jinja" import system with context %}
  2. {%- if system.haveged.enabled %}
  3. linux_haveged_pkgs:
  4. pkg.installed:
  5. - name: haveged
  6. - watch_in:
  7. - service: linux_haveged_service
  8. linux_haveged_service:
  9. service.running:
  10. - name: haveged
  11. - enable: true
  12. - require:
  13. - pkg: linux_haveged_pkgs
  14. {%- endif %}