minor bug fixes and systemd service tweaks.

This commit is contained in:
Joshua Ashton
2025-03-14 12:10:39 -06:00
parent 7db3961a79
commit 5baaa9e456
4 changed files with 19 additions and 25 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
#!/bin/bash
$JELLYFIN_PORT=5091;
JELLYFIN_PORT=5091;
# Get the official image of Jellyfin software.
echo "Running `podman pull ghcr.io/jellyfin/jellyfin`";
@@ -58,6 +58,6 @@ ExecStart=/usr/bin/podman start myjellyfin
[Install]
WantedBy=multi-user.target" | sudo tee /etc/systemd/system/jellyfin.service;
sudo systemctl daemon-reload && sudo systemctl enable jellyfin.service;
sudo systemctl daemon-reload && sudo systemctl enable jellyfin.service && sudo systemctl start jellyfin.service;
echo "For now, please visit jellyfin.org/docs for information about setting up Jellyfin. We'll have a more comprehensive guide soon.";