mirror of
https://github.com/saltstack-formulas/openssh-formula.git
synced 2024-11-28 01:18:12 +01:00
ffafd2a2f5
added possibility to configure server version and client version with pillar example
9 lines
233 B
Plaintext
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 %}
|