ansible-role-common/tasks/essentials-Debian.yml

18 lines
344 B
YAML
Raw Normal View History

---
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh, pip) - Debian Version
- name: Essentials - Install essential utilities
become: true
ansible.builtin.apt:
2023-07-03 08:17:52 +00:00
name:
2019-11-12 20:42:58 +00:00
- git
- curl
- wget
- zsh
- vim
- tmux
- python3-pip
2023-07-03 08:17:52 +00:00
state: present
update_cache: true
diff: false