This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/playbook.yml

19 lines
325 B
YAML

# vim: ft=yaml.ansible
---
- name: Deploy self-hosted services
hosts: all
gather_facts: true
become: true
tasks:
- name: Run OS configuration role
import_role:
name: os_config
tags:
- os
- name: Run Docker role
import_role:
name: docker
tags:
- docker