28 lines
387 B
YAML
28 lines
387 B
YAML
---
|
|
- name: Update the installed packages
|
|
apt:
|
|
update_cache: yes
|
|
upgrade: yes
|
|
become: true
|
|
|
|
- name: Install essential packages
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
become: true
|
|
with_items:
|
|
- vim
|
|
- emacs
|
|
- git
|
|
- htop
|
|
- zsh
|
|
- python
|
|
- python3
|
|
- screen
|
|
- tmux
|
|
- dnsutils
|
|
- stow
|
|
- mosh
|
|
- fail2ban
|
|
- tig
|