ansible-role-common/tasks/essentials-Debian.yml
2023-07-03 10:17:52 +02:00

18 lines
344 B
YAML

---
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh, pip) - Debian Version
- name: Essentials - Install essential utilities
become: true
ansible.builtin.apt:
name:
- git
- curl
- wget
- zsh
- vim
- tmux
- python3-pip
state: present
update_cache: true
diff: false