0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2024-11-28 07:48:17 +01:00
openssh-formula/openssh/init.sls

12 lines
241 B
Plaintext
Raw Normal View History

{% from "openssh/map.jinja" import openssh with context %}
2013-06-13 19:16:18 +02:00
openssh:
pkg.installed:
- name: {{ openssh.server }}
2013-06-13 19:16:18 +02:00
service.running:
- enable: True
- name: {{ openssh.service }}
2013-06-13 19:16:18 +02:00
- require:
- pkg: {{ openssh.server }}
2013-06-13 19:16:18 +02:00