ソースを参照

Config: Add support for generating keys

master
Alan Pearce 10年前
コミット
6fb57f40bc
1個のファイルの変更8行の追加1行の削除
  1. +8
    -1
      openssh/config.sls

+ 8
- 1
openssh/config.sls ファイルの表示

@@ -14,7 +14,14 @@ sshd_config:
- service: openssh

{% for keyType in ['ecdsa', 'dsa', 'rsa'] %}
{% if salt['pillar.get']('openssh:provide_' ~ keyType ~ '_keys', False) %}
{% if salt['pillar.get']('openssh:generate_' ~ keyType ~ '_keys', False) %}
ssh_generate_host_{{ keyType }}_key:
cmd.run:
- name: ssh-keygen -t {{ keyType }} -N '' -f /etc/ssh/ssh_host_{{ keyType }}_key
- creates: /etc/ssh/ssh_host_{{ keyType }}_key
- user: root

{% elif salt['pillar.get']('openssh:provide_' ~ keyType ~ '_keys', False) %}
ssh_host_{{ keyType }}_key:
file.managed:
- name: /etc/ssh/ssh_host_{{ keyType }}_key

読み込み中…
キャンセル
保存