Saltstack Official OpenSSH Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% from "openssh/map.jinja" import openssh with context %}
-
- ensure dig is available:
- pkg.installed:
- - name: {{ openssh.dig_pkg }}
- - unless: which dig
-
- manage ssh_known_hosts file:
- file.managed:
- - name: {{ openssh.ssh_known_hosts }}
- - source: salt://openssh/files/ssh_known_hosts
- - template: jinja
- - user: root
- - group: {{ openssh.ssh_config_group }}
- - mode: 644
- - require:
- - pkg: ensure dig is available
|