ansible-raspberry-lab/roles/common/tasks/main.yml

26 lines
385 B
YAML

---
- name: "Update apt-cache"
apt:
update_cache: yes
cache_valid_time: 3600
- name: "Install common packages"
apt:
name:
- apt-transport-https
- curl
- emacs
- geany
- git
- gzip
- htop
- lsb-release
- mc
- net-tools
- rsync
- vim
- wget
- whois
- xclip
state: latest