paulbsd-salt/states/ssh/install.sls

8 lines
150 B
Plaintext
Raw Normal View History

2020-07-10 00:58:55 +02:00
{%- from "ssh/map.jinja" import ssh with context %}
{% for pkg in ssh.pkgs %}
ssh-pkg-{{ pkg }}:
pkg.installed:
- name: {{ pkg }}
{% endfor %}