fix: jellyfin dir permissions for nextcloud

This commit is contained in:
Noah Masur 2022-10-23 04:16:42 +00:00
parent 941fa359d9
commit be581dba1f

View File

@ -20,8 +20,10 @@
}];
# Create videos directory, allow anyone in Jellyfin group to manage it
systemd.tmpfiles.rules =
[ "d /var/lib/jellyfin/library 0775 jellyfin jellyfin" ];
systemd.tmpfiles.rules = [
"d /var/lib/jellyfin 0775 jellyfin jellyfin"
"d /var/lib/jellyfin/library 0775 jellyfin jellyfin"
];
};