mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-14 03:40:05 +00:00
26 lines
547 B
YAML
26 lines
547 B
YAML
|
---
|
||
|
- name: Setup git config
|
||
|
copy:
|
||
|
src: templates/.gitconfig
|
||
|
dest: /root/.gitconfig
|
||
|
owner: root
|
||
|
mode: u=rw,g=,o=
|
||
|
|
||
|
- name: Scan for SSH host keys.
|
||
|
local_action:
|
||
|
module: shell
|
||
|
cmd: ssh-keyscan git.{{ domain }} 2>/dev/null
|
||
|
changed_when: False
|
||
|
register: ssh_scan
|
||
|
|
||
|
- name: Update known_hosts.
|
||
|
local_action:
|
||
|
module: known_hosts
|
||
|
key: "{{ item }}"
|
||
|
name: git.{{ domain }}
|
||
|
with_items: "{{ ssh_scan.stdout_lines }}"
|
||
|
|
||
|
- name: Install ssh keys
|
||
|
clone:
|
||
|
src: secrets/id_ed25519
|
||
|
dest: /root/.ssh/id_ed25519
|