0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2026-05-24 01:52:56 +02:00

added possibility to configure server version

This commit is contained in:
Lukas Resch 2018-09-03 15:47:37 +02:00
parent 7cfc9f5a04
commit f93ea51ed4

View File

@ -4,6 +4,9 @@ openssh:
{% if openssh.server is defined %} {% if openssh.server is defined %}
pkg.installed: pkg.installed:
- name: {{ openssh.server }} - name: {{ openssh.server }}
{% if openssh.server_version is defined %}
- version: {{ openssh.server_version }}
{% endif %}
{% endif %} {% endif %}
{% if openssh.sshd_enable is sameas true %} {% if openssh.sshd_enable is sameas true %}
service.running: service.running: