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

26 lines
385 B
YAML
Raw Normal View History

2020-10-01 21:50:32 +00:00
---
2020-10-01 22:12:14 +00:00
- name: "Update apt-cache"
apt:
update_cache: yes
cache_valid_time: 3600
2020-10-01 21:50:32 +00:00
- 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
2020-10-01 22:12:14 +00:00
state: latest