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/test.yml

20 lines
372 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 Docker
import_tasks: ../tasks/install-docker-tasks.yml