blob: 983fc4801ad68b69d449cf006028338e21f27d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: Update Aptitude
become: true
ansible.builtin.apt::
update_cache: true
tags:
- always
- name: Install dependencies
become: true
ansible.builtin.apt::
name: [curl, git, zsh, docker, fzf, tmux, stow, unzip, zip]
tags:
- always
|