forked from linuxserver/docker-sonarr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit d8ea320 Author: LinuxServer-CI <[email protected]> Date: Fri Jan 10 23:32:10 2025 +0000 Bot Updating Package Versions commit 52ed4df Author: LinuxServer-CI <[email protected]> Date: Thu Jan 9 13:44:04 2025 +0000 Bot Updating Templated Files commit 3917620 Merge: 418c317 b0ad5dc Author: Adam <[email protected]> Date: Thu Jan 9 13:42:25 2025 +0000 Merge pull request linuxserver#311 from pedorich-n/fix-rootless commit b0ad5dc Author: Nikita Pedorich <[email protected]> Date: Thu Jan 9 21:51:27 2025 +0900 fix: Rootless entrypoint commit 418c317 Author: LinuxServer-CI <[email protected]> Date: Mon Jan 6 03:05:49 2025 +0000 Bot Updating Package Versions commit af7da33 Author: LinuxServer-CI <[email protected]> Date: Fri Jan 3 23:33:30 2025 +0000 Bot Updating Package Versions commit 67b0b96 Author: LinuxServer-CI <[email protected]> Date: Wed Dec 25 23:11:22 2024 +0000 Bot Updating Package Versions commit e772abf Author: LinuxServer-CI <[email protected]> Date: Wed Dec 25 23:08:21 2024 +0000 Bot Updating Templated Files commit 95d17bc Merge: 5787812 df0fa0d Author: Roxedus <[email protected]> Date: Thu Dec 26 00:06:49 2024 +0100 Merge pull request linuxserver#309 from linuxserver/master-3.21 commit df0fa0d Author: thespad <[email protected]> Date: Mon Dec 23 18:05:25 2024 +0000 Newline commit edbd175 Author: thespad <[email protected]> Date: Mon Dec 23 18:02:59 2024 +0000 Rebase to 3.21 commit 5787812 Author: LinuxServer-CI <[email protected]> Date: Fri Dec 20 23:39:46 2024 +0000 Bot Updating Package Versions commit be4dd4b Author: LinuxServer-CI <[email protected]> Date: Fri Dec 20 23:33:34 2024 +0000 Bot Updating Templated Files commit e8c62f5 Author: LinuxServer-CI <[email protected]> Date: Fri Dec 20 23:30:54 2024 +0000 Bot Updating Templated Files commit b43e90d Author: LinuxServer-CI <[email protected]> Date: Fri Dec 6 23:40:55 2024 +0000 Bot Updating Package Versions commit c8d7639 Author: LinuxServer-CI <[email protected]> Date: Fri Dec 6 23:36:37 2024 +0000 Bot Updating Templated Files commit a5dda9b Author: LinuxServer-CI <[email protected]> Date: Fri Dec 6 23:34:50 2024 +0000 Bot Updating Templated Files commit a0b1e8a Author: LinuxServer-CI <[email protected]> Date: Fri Dec 6 23:33:15 2024 +0000 Bot Updating Templated Files commit 5f634a3 Author: LinuxServer-CI <[email protected]> Date: Wed Nov 27 02:06:47 2024 +0000 Bot Updating Package Versions
- Loading branch information
Showing
8 changed files
with
180 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
#!/usr/bin/with-contenv bash | ||
# shellcheck shell=bash | ||
|
||
exec \ | ||
s6-notifyoncheck -d -n 300 -w 1000 \ | ||
cd /app/sonarr/bin s6-setuidgid abc /app/sonarr/bin/Sonarr \ | ||
-nobrowser -data=/config | ||
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then | ||
exec \ | ||
s6-notifyoncheck -d -n 300 -w 1000 \ | ||
cd /app/sonarr/bin s6-setuidgid abc /app/sonarr/bin/Sonarr \ | ||
-nobrowser -data=/config | ||
else | ||
exec \ | ||
s6-notifyoncheck -d -n 300 -w 1000 \ | ||
cd /app/sonarr/bin /app/sonarr/bin/Sonarr \ | ||
-nobrowser -data=/config | ||
fi |