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

23 lines
333 B
YAML

---
- 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: present
update_cache: yes
become: yes