16 lines
341 B
YAML
16 lines
341 B
YAML
---
|
|
- name: setup
|
|
hosts: raspberries:&local
|
|
|
|
tasks:
|
|
- ansible.builtin.ping:
|
|
|
|
- name: prepare backups shared directory
|
|
ansible.builtin.import_playbook: backup_nfs.yml
|
|
tags: never
|
|
|
|
- name: setup factory postgres
|
|
ansible.builtin.import_playbook: postgres.yml
|
|
|
|
- name: setup factory gitea
|
|
ansible.builtin.import_playbook: gitea.yml |