Skip to content

Commit 1a9ccc9

Browse files
authored
Merge pull request #242 from linuxserver/nightly-nonroot-consistency
2 parents 706549f + 37952be commit 1a9ccc9

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='7878'
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
@@ -23,7 +23,7 @@ repo_vars:
2323
- CI_WEB='true'
2424
- CI_PORT='7878'
2525
- CI_SSL='false'
26-
- CI_DELAY='120'
26+
- CI_DELAY='240'
2727
- CI_DOCKERENV=''
2828
- CI_AUTH=''
2929
- 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/radarr/bin /app/radarr/bin/Radarr \
7+
cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \
88
-nobrowser -data=/config
99
else
1010
exec \
1111
s6-notifyoncheck -d -n 300 -w 1000 \
12-
cd /app/radarr/bin s6-setuidgid abc /app/radarr/bin/Radarr \
12+
cd /app/radarr/bin /app/radarr/bin/Radarr \
1313
-nobrowser -data=/config
1414
fi

0 commit comments

Comments
 (0)