aboutsummaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2018-05-14 13:09:34 +0800
committerAaron LI <aly@aaronly.me>2018-05-14 13:09:34 +0800
commit3c47dcd8060626f351b9bc1a0cff34a4c4c79ac1 (patch)
treef42f19df3637bbb73f1bc24c6dc5ecaa77eb95a2 /roles
parentc8dc9e163b50272bf8e3972c8ef37ea3e871b247 (diff)
downloadansible-dfly-vps-3c47dcd8060626f351b9bc1a0cff34a4c4c79ac1.tar.bz2
git: update github keyname to be keyfile to the full path to the key
Diffstat (limited to 'roles')
-rw-r--r--roles/git/tasks/main.yml6
1 files changed, 3 insertions, 3 deletions
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