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:08:25 -06:00
|
|
|
- name: TEST DELETEME 1
|
2021-02-01 05:10:17 -06:00
|
|
|
shell: echo `whoami`
|
2021-02-01 05:15:45 -06:00
|
|
|
register: test1
|
|
|
|
|
2021-02-01 05:17:51 -06:00
|
|
|
- debug:
|
|
|
|
var: test1
|
2021-02-01 05:08:25 -06:00
|
|
|
|
|
|
|
- name: TEST DELETEME 2
|
2021-02-01 05:10:17 -06:00
|
|
|
shell: echo `pwd`
|
2021-02-01 05:15:45 -06:00
|
|
|
register: test2
|
|
|
|
|
2021-02-01 05:17:51 -06:00
|
|
|
- debug:
|
|
|
|
var: test2
|
2021-02-01 05:08:25 -06:00
|
|
|
|
2021-02-01 05:03:27 -06:00
|
|
|
- name: Join System to 1337 Share
|
2021-02-01 05:10:17 -06:00
|
|
|
shell: echo "ssh-copy-id -f ling@leet"
|