first commit
This commit is contained in:
commit
5816898404
50 changed files with 1031 additions and 0 deletions
31
minilab.yaml
Normal file
31
minilab.yaml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
# Pre-run tasks for all hosts
|
||||
- name: Pre-run tasks for all hosts
|
||||
hosts: all
|
||||
tags: always
|
||||
become: true
|
||||
pre_tasks:
|
||||
- name: Update package cache (Alpine)
|
||||
tags: always
|
||||
community.general.apk:
|
||||
update_cache: true
|
||||
when: ansible_distribution == "Alpine"
|
||||
|
||||
- name: Common tasks for all hosts
|
||||
hosts: all
|
||||
tags: common
|
||||
become: true
|
||||
roles:
|
||||
- adhdgirl.minilab.common
|
||||
- name: Ensure docker is installed and running
|
||||
hosts: docker
|
||||
tags: docker
|
||||
become: true
|
||||
roles:
|
||||
- adhdgirl.minilab.docker
|
||||
- name: Configure AdGuard home hosts
|
||||
hosts: pump
|
||||
tags: docker,adguard
|
||||
become: true
|
||||
roles:
|
||||
- adhdgirl.minilab.adguardhome
|
||||
Loading…
Add table
Add a link
Reference in a new issue