dotfiles/roles/ssh/tasks/main.yml
Matej Focko 0554e665c5
chore: move out user roles
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-07-12 21:23:02 +02:00

20 lines
460 B
YAML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: Install SSH config
ansible.builtin.copy:
src: files/ssh_config
dest: ~/.ssh/config
mode: 0600
tags: ssh/config
- name: Install .ssh/authorized_keys
ansible.builtin.get_url:
url: https://gitlab.com/{{ gitlab_login }}.keys
dest: ~/.ssh/authorized_keys
mode: 0600
tags: ssh/authorized-keys
- name: Install vssh script
ansible.builtin.copy:
src: files/vssh
dest: ~/.local/bin/vssh
mode: 0640