31 lines
457 B
YAML
31 lines
457 B
YAML
---
|
|
- name: Update the installed packages
|
|
apt:
|
|
update_cache: yes
|
|
upgrade: yes
|
|
become: true
|
|
|
|
- name: Install essential packages
|
|
package:
|
|
name:
|
|
- vim
|
|
- emacs
|
|
- git
|
|
- htop
|
|
- zsh
|
|
- python
|
|
- python3
|
|
- screen
|
|
- tmux
|
|
- dnsutils
|
|
- stow
|
|
- mosh
|
|
- fail2ban
|
|
- tig
|
|
- sudo
|
|
- aptitude
|
|
- curl
|
|
state: present
|
|
cache_valid_time: yes
|
|
become: true
|