Saltstack Official OpenSSH Formula
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
270B

  1. {% from "openssh/map.jinja" import mapdata with context %}
  2. {%- set openssh = mapdata.openssh %}
  3. openssh_client:
  4. pkg.installed:
  5. - name: {{ openssh.client }}
  6. {% if openssh.client_version is defined %}
  7. - version: {{ openssh.client_version }}
  8. {% endif %}