2021-02-01 05:03:27 -06:00
|
|
|
---
|
2021-02-01 05:15:45 -06:00
|
|
|
# SSH keys for day-to-day system usage.
|
2021-02-01 05:03:27 -06:00
|
|
|
|
|
|
|
- name: Create Root's SSH Key
|
|
|
|
openssh_keypair:
|
|
|
|
path: /root/.ssh/id_rsa
|
2021-02-01 05:47:22 -06:00
|
|
|
when: ansible_distribution != "Debian"
|
2021-02-01 05:03:27 -06:00
|
|
|
|
|
|
|
- name: Join System to 1337 Share
|
2021-02-01 05:47:22 -06:00
|
|
|
shell: ssh-copy-id -f -i /root/.ssh/id_rsa ling@leet
|
|
|
|
when: ansible_distribution != "Debian"
|