diff options
| author | Jan Tuomi <jan@jantuomi.fi> | 2026-07-14 09:40:02 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2026-07-14 09:40:02 +0300 |
| commit | 7872660a4fb6c272619283617856d87f901c850c (patch) | |
| tree | 585afae8c8d573a107850951b0a070ecf35e09e2 /roles | |
| parent | 51e53772a7fedae0b96ab99d35dc548d96c6b17d (diff) | |
Fix volume mounts
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/host/templates/etc_rc.conf.j2 | 2 | ||||
| -rw-r--r-- | roles/jails/13_plex/defaults/main.yml | 3 | ||||
| -rw-r--r-- | roles/jails/16_dl/defaults/main.yml | 8 | ||||
| -rw-r--r-- | roles/jails/17_syncthing/defaults/main.yml | 2 |
4 files changed, 14 insertions, 1 deletions
diff --git a/roles/host/templates/etc_rc.conf.j2 b/roles/host/templates/etc_rc.conf.j2 index b343df0..561d472 100644 --- a/roles/host/templates/etc_rc.conf.j2 +++ b/roles/host/templates/etc_rc.conf.j2 @@ -44,7 +44,7 @@ vm_enable="YES" vm_dir="zfs:zroot/vm" vm_list="alpine0" vm_delay="5" -kld_list="pf if_wg i915kms" +kld_list="pf if_wg i915kms fdescfs" {% else %} kld_list="pf if_wg" {% endif %} diff --git a/roles/jails/13_plex/defaults/main.yml b/roles/jails/13_plex/defaults/main.yml index 76c9dda..710d6a3 100644 --- a/roles/jails/13_plex/defaults/main.yml +++ b/roles/jails/13_plex/defaults/main.yml @@ -3,6 +3,9 @@ userland: "15.0-RELEASE" zfs: - name: zroot/jails/volumes/plex_data mountpoint: /usr/local/plexdata + owner: 972 + group: 972 + mode: 755 nullfs: - src: /usr/local/jails/volumes/storage/media diff --git a/roles/jails/16_dl/defaults/main.yml b/roles/jails/16_dl/defaults/main.yml index 481f414..f94cf26 100644 --- a/roles/jails/16_dl/defaults/main.yml +++ b/roles/jails/16_dl/defaults/main.yml @@ -12,12 +12,20 @@ nullfs: zfs: - name: zroot/jails/volumes/dl_sonarr mountpoint: /usr/local/sonarr + owner: 351 + group: 351 - name: zroot/jails/volumes/dl_radarr mountpoint: /usr/local/radarr + owner: 352 + group: 352 - name: zroot/jails/volumes/dl_lidarr mountpoint: /usr/local/lidarr + owner: 356 + group: 356 - name: zroot/jails/volumes/dl_prowlarr mountpoint: /usr/local/prowlarr + owner: 359 + group: 359 pkg: - transmission-daemon diff --git a/roles/jails/17_syncthing/defaults/main.yml b/roles/jails/17_syncthing/defaults/main.yml index 27ec9ff..51a6909 100644 --- a/roles/jails/17_syncthing/defaults/main.yml +++ b/roles/jails/17_syncthing/defaults/main.yml @@ -7,6 +7,8 @@ nullfs: dst: /mnt/vault - src: /usr/local/jails/volumes/storage/jan-systems-2025-content dst: /mnt/jan-systems-2025-content + - src: /usr/local/jails/volumes/storage/projects-ableton + dst: /mnt/projects-ableton zfs: - name: zroot/jails/volumes/syncthing_config |
