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

24 satır
609B

  1. {% from "openssh/map.jinja" import openssh with context %}
  2. openssh:
  3. {% if openssh.server is defined %}
  4. pkg.installed:
  5. - name: {{ openssh.server }}
  6. {% if openssh.server_version is defined %}
  7. - version: {{ openssh.server_version }}
  8. {% endif %}
  9. {% endif %}
  10. {% if openssh.sshd_enable is sameas true %}
  11. service.running:
  12. - enable: {{ openssh.sshd_enable }}
  13. - name: {{ openssh.service }}
  14. {% if openssh.server is defined %}
  15. - require:
  16. - pkg: {{ openssh.server }}
  17. {% endif %}
  18. {% else %}
  19. service.dead:
  20. - enable: False
  21. - name: {{ openssh.service }}
  22. {% endif %}