2020-07-10 01:54:15 +00:00
|
|
|
- name: Install useful software
|
|
|
|
apt:
|
|
|
|
name: ["vim", "wget"]
|
|
|
|
state: present
|
2020-07-29 05:09:46 +00:00
|
|
|
|
|
|
|
- name: Manage root authorized_keys
|
|
|
|
template:
|
|
|
|
src: authorized_keys.j2
|
|
|
|
dest: /root/.ssh/authorized_keys
|
|
|
|
when: authorized_keys is defined
|