0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2024-11-28 01:18:12 +01:00
openssh-formula/openssh/client.sls
reschl ffafd2a2f5 Support package versions (#134)
added possibility to configure server version and client version
with pillar example
2018-09-03 16:42:39 +02:00

9 lines
233 B
Plaintext

{% from "openssh/map.jinja" import openssh with context %}
openssh_client:
pkg.installed:
- name: {{ openssh.client }}
{% if openssh.client_version is defined %}
- version: {{ openssh.client_version }}
{% endif %}