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

17 lines
398 B
YAML

- name: Install wanted software
ansible.builtin.apt:
pkg:
- bzip2
- jq
- unzip
- zsh
state: present
update_cache: true
become: true
- name: Install docker
ansible.builtin.import_tasks: docker.yml
- name: Install (auto-)restic
ansible.builtin.import_tasks: restic.yml
- name: Install systemd-resolved
ansible.builtin.import_tasks: systemd-resolved.yml