Saltstack Official Linux 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.

19 line
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 %}