16 lines
323 B
YAML
16 lines
323 B
YAML
---
|
|
- name: setup
|
|
hosts: raspberries:&local
|
|
|
|
tasks:
|
|
- ansible.builtin.ping:
|
|
|
|
- name: setup hard disk
|
|
ansible.builtin.import_playbook: hard_disk.yml
|
|
tags: never
|
|
|
|
- name: setup factory postgres
|
|
ansible.builtin.import_playbook: postgres.yml
|
|
|
|
- name: setup factory gitea
|
|
ansible.builtin.import_playbook: gitea.yml |