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

26 lines
507 B
Plaintext
Raw Normal View History

2013-06-13 19:16:18 +02:00
openssh:
pkg:
- installed
{% if grains['os_family'] == 'Debian' %}
- name: openssh-server
{% endif %}
service.running:
- enable: True
- name: ssh
2013-06-13 19:16:18 +02:00
- require:
- pkg: openssh
- file: sshd_banner
- watch:
- file: sshd_config
sshd_config:
file.managed:
- name: /etc/ssh/sshd_config
- source: salt://openssh/files/sshd_config
sshd_banner:
file.managed:
- name: /etc/ssh/banner
- source: salt://openssh/files/banner
- template: jinja