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.
35 lines
542 B
YAML
35 lines
542 B
YAML
---
|
|
- name: Update and upgrade apt packages
|
|
apt:
|
|
upgrade: dist
|
|
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
|
|
- rsync
|
|
- gnupg
|
|
- sudo
|
|
- curl
|
|
- python-pip
|
|
- python3-pip
|
|
- python-setuptools
|
|
- python3-setuptools
|
|
state: present
|
|
tags: packages
|