19 lines
264 B
YAML
19 lines
264 B
YAML
---
|
|
# Neue VM komplett einrichten
|
|
- name: VM Setup
|
|
hosts: all
|
|
become: yes
|
|
roles:
|
|
- base
|
|
- docker
|
|
- borg
|
|
- hawser
|
|
- sysctl
|
|
|
|
# Proxmox Hosts
|
|
- name: Proxmox Tuning
|
|
hosts: proxmox
|
|
become: yes
|
|
roles:
|
|
- sysctl_proxmox
|
|
- telegraf
|