소스 검색

handle ssh authorized keys via template

master
부모
커밋
1414cb206a
2개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      tasks/main.yml
  2. +3
    -0
      templates/ssh_authorized_keys.j2

+ 2
- 2
tasks/main.yml 파일 보기

@@ -55,8 +55,8 @@
with_items: "{{ users.keys() }}"

- name: ssh authorized keys
copy:
content: "{{ users[item].authorized_keys }}"
template:
src: ssh_authorized_keys.j2
dest: "{{ users[item].home | default('/home/'+item) }}/.ssh/authorized_keys"
owner: "{{ item }}"
group: "{{ item }}"


+ 3
- 0
templates/ssh_authorized_keys.j2 파일 보기

@@ -0,0 +1,3 @@
{% for key in users[item].authorized_keys %}
{{ key }}
{% endfor %}

불러오는 중...
취소
저장