1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_weechat.git synced 2024-08-16 13:09:48 +02:00
ansible_role_weechat/tasks/configure_custom_config.yml

60 lines
1.8 KiB
YAML
Raw Normal View History

---
- name: create ssh key pair (if needed)
become_user: "{{ weechat.user }}"
become: true
openssh_keypair:
2020-03-12 23:03:29 +01:00
path: "{{ weechat.home_directory }}/.ssh/id_ed25519"
type: ed25519
owner: "{{ weechat.user }}"
register: ssh_key_pair
when: weechat.custom_config.gen_ssh_key_pair | bool
- name: print ssh public key to user
pause:
prompt: |
We generated a new ssh key pair for you.
Please use the following public key as deployment key
to your private git repository with your own weechat config.
Private git repositorys are not public available and
you need some sort of authorisation method to verify
that you are allowed to clone your private repo.
Your ssh public key come here...
{{ ssh_key_pair.public_key }}
Please be aware, that this role do not commit or
push any local changes and you have to do this
manually by yourself.
when:
- weechat.custom_config.gen_ssh_key_pair | bool
- ssh_key_pair.changed
2020-03-12 22:44:15 +01:00
2020-03-14 16:24:59 +01:00
- name: clone or update private git repository
2020-03-12 22:44:15 +01:00
become_user: "{{ weechat.user }}"
become: true
2020-03-14 16:24:59 +01:00
block:
- name: try to download/update git repo
git:
repo: "{{ weechat.custom_config.private_repo }}"
dest: "{{ weechat.home_directory }}/.weechat"
version: master
accept_hostkey: yes
update: yes
rescue:
- name: wait until you fixed remote git issues
pause:
prompt: "Please fix the issue with your git repository and try again"
- name: try to download/update git repo again
git:
repo: "{{ weechat.custom_config.private_repo }}"
dest: "{{ weechat.home_directory }}/.weechat"
version: master
accept_hostkey: yes
update: yes
2020-03-12 22:44:15 +01:00
when: not weechat.custom_config.private_repo | bool