Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit b287a4d

Browse files
authored
Merge pull request #43 from linuxserver/nightly-nonroot-consistency
2 parents 3dbac73 + 9f4fdfc commit b287a4d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pipeline {
3232
CI_WEB='true'
3333
CI_PORT='8787'
3434
CI_SSL='false'
35-
CI_DELAY='120'
35+
CI_DELAY='240'
3636
CI_DOCKERENV=''
3737
CI_AUTH=''
3838
CI_WEBPATH='/system/status'

jenkins-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repo_vars:
2020
- CI_WEB='true'
2121
- CI_PORT='8787'
2222
- CI_SSL='false'
23-
- CI_DELAY='120'
23+
- CI_DELAY='240'
2424
- CI_DOCKERENV=''
2525
- CI_AUTH=''
2626
- CI_WEBPATH='/system/status'
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#!/usr/bin/with-contenv bash
22
# shellcheck shell=bash
33

4-
if [[ -n ${LSIO_NON_ROOT_USER} ]]; then
4+
if [[ -z ${LSIO_NON_ROOT_USER} ]]; then
55
exec \
66
s6-notifyoncheck -d -n 300 -w 1000 \
7-
cd /app/readarr/bin /app/readarr/bin/Readarr \
7+
cd /app/readarr/bin s6-setuidgid abc /app/readarr/bin/Readarr \
88
-nobrowser -data=/config
99
else
1010
exec \
1111
s6-notifyoncheck -d -n 300 -w 1000 \
12-
cd /app/readarr/bin s6-setuidgid abc /app/readarr/bin/Readarr \
12+
cd /app/readarr/bin /app/readarr/bin/Readarr \
1313
-nobrowser -data=/config
1414
fi

0 commit comments

Comments
 (0)