mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-19 15:04:23 +02:00
25 lines
605 B
YAML
25 lines
605 B
YAML
---
|
|
- name: servers host setup
|
|
when: ("servers" in group_names)
|
|
include_role:
|
|
name: "{{ item }}"
|
|
loop:
|
|
- core-security
|
|
- core-journalctl
|
|
- mon-bot-disc-space
|
|
- cln-disc-space
|
|
- mon-bot-btrfs
|
|
- maint-btrfs-auto-balancer
|
|
|
|
- name: "Integrate Docker Role includes"
|
|
include_tasks: "./tasks/groups/{{ item }}-roles.yml"
|
|
loop:
|
|
- svc
|
|
- web
|
|
loop_control:
|
|
label: "{{ item }}-roles.yml"
|
|
|
|
- name: "setup corporate identity"
|
|
include_role:
|
|
name: util-srv-corporate-identity
|
|
when: ('corporate_identity' | application_allowed(group_names, allowed_applications)) |