homelab/roles/base/tasks/system.yml

21 lines
506 B
YAML
Raw Normal View History

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