2020-07-10 01:54:15 +00:00
|
|
|
- name: Install useful software
|
|
|
|
apt:
|
2020-08-15 22:14:45 +00:00
|
|
|
name: "{{ packages }}"
|
2020-07-10 01:54:15 +00:00
|
|
|
state: present
|
2020-09-21 21:41:32 +00:00
|
|
|
update_cache: true
|
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
|
2020-09-01 16:56:27 +00:00
|
|
|
|
|
|
|
- name: Manage filesystem mounts
|
|
|
|
mount:
|
|
|
|
path: "{{ item.path }}"
|
|
|
|
src: "UUID={{ item.uuid }}"
|
|
|
|
fstype: "{{ item.fstype }}"
|
|
|
|
state: mounted
|
|
|
|
loop: "{{ mounts }}"
|
|
|
|
when: mounts is defined
|