Add FreeBSD compatibility

This commit is contained in:
Alan Pearce 2014-08-08 13:38:27 +01:00
parent b39ea29c0c
commit edc208b79b
2 changed files with 11 additions and 0 deletions

View File

@ -1,10 +1,14 @@
{% from "openssh/map.jinja" import openssh with context %}
openssh:
{% if openssh.server is defined %}
pkg.installed:
- name: {{ openssh.server }}
{% endif %}
service.running:
- enable: True
- name: {{ openssh.service }}
{% if openssh.server is defined %}
- require:
- pkg: {{ openssh.server }}
{% endif %}

View File

@ -17,4 +17,11 @@
'banner': '/etc/ssh/banner',
'banner_src': 'salt://openssh/files/banner',
},
'FreeBSD': {
'service': 'sshd',
'sshd_config': '/etc/ssh/sshd_config',
'sshd_config_src': 'salt://openssh/files/sshd_config',
'banner': '/etc/ssh/banner',
'banner_src': 'salt://openssh/files/banner',
}
}, merge=salt['pillar.get']('openssh:lookup')) %}