10 lines
333 B
Bash
10 lines
333 B
Bash
#!/bin/sh
|
|
chown -R podman:podman /mnt/ssd/jellyfin
|
|
chmod -R 775 /mnt/ssd/jellyfin
|
|
|
|
chmod +x /etc/init.d/jellyfin.service
|
|
rc-update add jellyfin.service default
|
|
rc-service jellyfin.service start
|
|
|
|
# If you encounter the following error: Error: statfs /mnt/ssd/jellyfin: no such file or directory
|
|
# Please run "podman system migrate"... |