Skip to content

Commit

Permalink
Merge pull request #66 from linuxserver/nightly-nonroot-consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
thespad authored Dec 20, 2024
2 parents ad708bc + 5b9a311 commit 1636d48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pipeline {
CI_WEB='true'
CI_PORT='9696'
CI_SSL='false'
CI_DELAY='120'
CI_DELAY='240'
CI_DOCKERENV=''
CI_AUTH=''
CI_WEBPATH='/system/status'
Expand Down
2 changes: 1 addition & 1 deletion jenkins-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repo_vars:
- CI_WEB='true'
- CI_PORT='9696'
- CI_SSL='false'
- CI_DELAY='120'
- CI_DELAY='240'
- CI_DOCKERENV=''
- CI_AUTH=''
- CI_WEBPATH='/system/status'
Expand Down
6 changes: 3 additions & 3 deletions root/etc/s6-overlay/s6-rc.d/svc-prowlarr/run
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/with-contenv bash
# shellcheck shell=bash

if [[ -n ${LSIO_NON_ROOT_USER} ]]; then
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
exec \
s6-notifyoncheck -d -n 300 -w 1000 \
cd /app/prowlarr/bin /app/prowlarr/bin/Prowlarr \
cd /app/prowlarr/bin s6-setuidgid abc /app/prowlarr/bin/Prowlarr \
-nobrowser -data=/config
else
exec \
s6-notifyoncheck -d -n 300 -w 1000 \
cd /app/prowlarr/bin s6-setuidgid abc /app/prowlarr/bin/Prowlarr \
cd /app/prowlarr/bin /app/prowlarr/bin/Prowlarr \
-nobrowser -data=/config
fi

0 comments on commit 1636d48

Please sign in to comment.