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

23 lines
333 B
YAML
Raw Normal View History

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