-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from linuxserver/development-3.21
- Loading branch information
Showing
6 changed files
with
27 additions
and
10 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
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,5 +1,7 @@ | ||
#!/usr/bin/with-contenv bash | ||
# shellcheck shell=bash | ||
|
||
# permissions | ||
lsiown -R abc:abc \ | ||
/config | ||
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then | ||
lsiown -R abc:abc \ | ||
/config | ||
fi |
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,5 +1,12 @@ | ||
#!/usr/bin/with-contenv bash | ||
# shellcheck shell=bash | ||
|
||
exec \ | ||
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 6767" \ | ||
s6-setuidgid abc python3 /app/bazarr/bin/bazarr.py --no-update --config /config | ||
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then | ||
exec \ | ||
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 6767" \ | ||
cd /app/bazarr/bin s6-setuidgid abc python3 /app/bazarr/bin/bazarr.py --no-update --config /config | ||
else | ||
exec \ | ||
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 6767" \ | ||
cd /app/bazarr/bin python3 /app/bazarr/bin/bazarr.py --no-update --config /config | ||
fi |