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