You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-homelab/ansible/homelab/playbooks/setup-home-lab.yml

23 lines
451 B
YAML

---
- hosts: servers
connection: local
tasks:
- name: Update and upgrade apt packages
become: true
apt:
upgrade: yes
update_cache: yes
cache_valid_time: 86400
- name: Install aptitude
apt:
name: aptitude
state: latest
update_cache: true
- name: Install JQ
import_tasks: ../tasks/install-dev-tooling-tasks.yml
- name: Install Docker
import_tasks: ../tasks/install-docker-tasks.yml