infrastructure/playbooks/roles/software/tasks/main.yml

25 lines
588 B
YAML
Raw Normal View History

- name: Install aptitude
ansible.builtin.apt:
name: aptitude
state: present
update_cache: true
become: true
2024-10-14 01:30:59 +00:00
- name: Install jq and bzip2
ansible.builtin.apt:
pkg:
- jq
2024-10-14 01:30:59 +00:00
- bzip2
state: present
update_cache: true
become: true
2024-10-14 01:30:59 +00:00
2024-10-31 21:05:04 +00:00
- name: Install docker
ansible.builtin.import_tasks: docker.yml
- name: Install docker rclone plugin
ansible.builtin.import_tasks: docker-rclone-plugin.yml
- name: Install (auto-)restic
ansible.builtin.import_tasks: restic.yml
- name: Install systemd-resolved
ansible.builtin.import_tasks: systemd-resolved.yml