You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
- name: Update & upgrade system
|
|
apt:
|
|
update_cache: yes
|
|
upgrade: dist
|
|
tags:
|
|
- update
|
|
|
|
- name: Install required packages
|
|
apt:
|
|
name:
|
|
- htop
|
|
- vim
|
|
- locales
|
|
- python-is-python3
|
|
- python3-pip
|
|
- wget
|
|
- zip
|
|
- bzip2
|
|
- vim-common
|
|
- screen
|
|
- curl
|
|
- git
|
|
- unzip
|
|
state: present
|
|
|