From 3c47dcd8060626f351b9bc1a0cff34a4c4c79ac1 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Mon, 14 May 2018 13:09:34 +0800 Subject: git: update github keyname to be keyfile to the full path to the key --- roles/git/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'roles/git/tasks/main.yml') diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml index 5348810..caf04f8 100644 --- a/roles/git/tasks/main.yml +++ b/roles/git/tasks/main.yml @@ -48,7 +48,7 @@ - name: (local) github sync - check ssh key existence become: false stat: - path: "{{ playbook_dir }}/private/git/{{ git.github.keyname }}" + path: "{{ git.github.keyfile }}" delegate_to: localhost register: stat_result @@ -56,7 +56,7 @@ become: false command: > ssh-keygen -t ed25519 -C "git:github-sync" -N "" - -f "{{ playbook_dir }}/private/git/{{ git.github.keyname }}" + -f "{{ git.github.keyfile }}" delegate_to: localhost when: not stat_result.stat.exists @@ -70,7 +70,7 @@ - name: github sync - copy public key to the server copy: - src: "{{ playbook_dir }}/private/git/{{ git.github.keyname }}" + src: "{{ git.github.keyfile }}" dest: "{{ git.user.home }}/.ssh/id_{{ git.github.keytype }}" owner: "{{ git.user.name }}" mode: 0400 -- cgit v1.2.2