18 lines
444 B
YAML
18 lines
444 B
YAML
---
|
|
# SSH keys for day-to-day system usage.
|
|
|
|
# Debian's ansible is too old to use this.
|
|
#- name: Create Root's SSH Key
|
|
# openssh_keypair:
|
|
# path: /root/.ssh/id_rsa
|
|
|
|
- name: SSH Key | Root | Create
|
|
shell: ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa <<< n
|
|
args:
|
|
executable: /bin/bash
|
|
ignore_errors: yes
|
|
|
|
- name: SSH Key | Root | Copy to 1337
|
|
shell: ssh-copy-id -f -i /root/.ssh/id_rsa ling@leet
|
|
args:
|
|
stdin: "{{ leet_passwd }}" |