homepage/ansible/roles/server/tasks/main.yml

12 lines
200 B
YAML
Executable File

---
- name: Update apt cache
apt: update_cache=yes
- name: Install system packages
apt: pkg={{ item }} state=latest
with_items:
- curl
- wget
- python-software-properties
- git