22 lines
459 B
YAML
Executable File
22 lines
459 B
YAML
Executable File
#################################################
|
|
# DO Community Playbooks: Docker
|
|
#################################################
|
|
---
|
|
- name: Bake pies
|
|
hosts: all
|
|
become: true
|
|
vars_files:
|
|
- vars/pies.yml
|
|
|
|
pre_tasks:
|
|
- name: Load per-host vars file from inventory (var_file)
|
|
ansible.builtin.include_vars:
|
|
file: "{{ var_file }}"
|
|
when: var_file is defined
|
|
|
|
roles:
|
|
- common
|
|
- zsh
|
|
- docker
|
|
- netbird_client
|