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

17 lines
292 B
YAML
Raw Normal View History

---
# Common/Essentials: Essential Utilities (git, curl; vim, tmux, zsh) - Debian Version
- name: essentials - Install essential utilities
become: yes
apt:
name: "{{ packages }}"
2019-10-10 14:49:55 +00:00
state: present
vars:
packages:
- git
- curl
2019-10-14 06:47:22 +00:00
- wget
- zsh
- vim
- tmux