Added emma play and updated roles for multi-server setup

This commit is contained in:
Jef Roosens 2025-12-21 21:43:27 +01:00
parent dc538a3971
commit 75e0f73ba8
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
10 changed files with 151 additions and 0 deletions

View file

@ -0,0 +1,20 @@
---
- name: Install BTRFS tools
apt:
name: btrfs-progs
state: present
- name: Create mountpoint
file:
path: /mnt/data1
state: directory
mode: '0755'
owner: debian
group: debian
- name: Mount RAID
mount:
path: /mnt/data1
src: "UUID={{ raid_uuid }}"
fstype: btrfs
state: mounted