2019-10-06 20:41:31 +00:00
|
|
|
---
|
2020-03-19 17:17:57 +00:00
|
|
|
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh, pip) - Debian Version
|
2019-10-06 20:41:31 +00:00
|
|
|
|
2023-04-28 21:25:25 +00:00
|
|
|
- name: Essentials - Install essential utilities
|
|
|
|
become: true
|
2021-08-28 14:58:03 +00:00
|
|
|
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
|
2020-03-19 17:17:57 +00:00
|
|
|
- python3-pip
|
2023-07-03 08:17:52 +00:00
|
|
|
state: present
|
|
|
|
update_cache: true
|
2023-04-28 21:25:25 +00:00
|
|
|
diff: false
|