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.

31 lines
499 B
YAML

---
- name: Update and upgrade apt packages
apt:
upgrade: 'yes'
update_cache: 'yes'
cache_valid_time: 86400 # One day
- name: install a default set of packages
package:
name:
- vim
- nano
- htop
- git
- tmux
- screen
- byobu
- ncdu
- moreutils
- apt-transport-https
- smartmontools
- zip
- unzip
- zsh
- python-pip
- python3-pip
- python-setuptools
- python3-setuptools
state: present
tags: packages